function go()
{
	box = document.forms[1].nav;
	destination = box.options[box.selectedIndex].value;
	if (destination) location.href = "#" + destination;
}

function openWindow(url, name, features) {
popupWin = window.open(url, name, features)
}

function ShowZoom(obj)
{
  document.write('<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" WIDTH="550" HEIGHT="450" ID="theMovie">');
document.write('<PARAM NAME="FlashVars" VALUE="zoomifyImagePath='+obj+'/&zoomifyX=0.0&zoomifyY=0.0&zoomifyZoom=-1&zoomifyToolbar=1&zoomifyNavWindow=1">');
document.write('<PARAM NAME="src" VALUE="zoomifyViewer.swf">');
document.write('<EMBED FlashVars="zoomifyImagePath='+obj+'/&zoomifyX=0.0&zoomifyY=0.0&zoomifyZoom=-1&zoomifyToolbar=1&zoomifyNavWindow=1" SRC="zoomifyViewer.swf" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" WIDTH="550" HEIGHT="450" NAME="theMovie"></EMBED>');
document.write('</OBJECT>');
}

//Disable right mouse click Script
var message="";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("return false")
//document.oncontextmenu=new Function("alert(message);return false")

