

<!-- BLOCKS ALL JAVASCRIPT ERRORS

function blockError(){return true;}
window.onerror = blockError;


function noRightClick() {
if (event.button==2) {
alert('You may not right mouse click this page.')
}
}
document.onmousedown=noRightClick



// FULL SCREEN MODE

function fullScreen() {
  window.open(location.href,'fullscreen','fullscreen,scrollbars')
}




// MOUSEOVER EFFECTS



if (document.images) {


//slideshowon = new Image(60, 300);
//slideshowon.src = "images/slideshow-on.gif"

//slideshowoff = new Image(60, 300);
//slideshowoff.src = "images/slideshow-off.gif"


//contacton = new Image(52, 52);
//contacton.src = "images/contact-on.gif"

//contactoff = new Image(52, 52);
//contactoff.src = "images/contact-off.gif"

}

function img_act(imgName) {
if (document.images) {
imgOn = eval(imgName + "on.src");
document [imgName].src = imgOn;
}
}

function img_inact(imgName) {
if (document.images) {
imgOff = eval(imgName + "off.src");
document [imgName].src = imgOff;
}
}


// -->