// JavaScript Document

var popupWin = null;

// OPEN WINDOW
// options for this window are:
// resizable,toolbar,scrollbars,menubar

function PopUpWin(url, name, window_options) 
{
  popupWin = window.open(url,name,window_options)
  popupWin.focus()
}
function chg1pic(imgnam1, gif1) {
document[imgnam1].src=[gif1]
}
function protector(mouseevent) {
	if (navigator.appName == 'Netscape' && (mouseevent.which == 2 || mouseevent.which == 3))
		return false;
	else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
		alert("Please contact Odin for a copy of this image.  Thank you.");
		return false;
	} else return true;
}
document.onmousedown=protector;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=protector;

