if (window != window.top) { top.location.href = location.href; }
  
function mousein(arg) {
	arg.style.background = '#000000';
	arg.style.color = '#FFFFFF';
}

function mouseout(arg) {
	arg.style.background = '#D9C097';
	arg.style.color = '#000000';
}

function gohere(arg) {
	location.href = arg;
}
 
//Misc Code
function yesNo(arg) {
	if (arg == 1 || arg == 'yes')
		{ return 'yes'; }
	else
		{ return 'no'; }
}

function ViewPic(theURL) {
var str = "left=0,screenX=0,top=0,screenY=0";
var ah = screen.availHeight - 30;
var aw = screen.availWidth - 10;
str += ",height=" + ah;
str += ",innerHeight=" + ah;
str += ",width=" + aw;
str += ",innerWidth=" + aw;
str += ",scrollbars,resizable";
window.open(theURL,"",str)
}

function JumpTo(page) {
   self.location.replace(page.menu.options[page.menu.selectedIndex].value);
}
