<!--

function SymError()
{
  return true;
}

window.onerror = SymError;

var SymRealWinOpen = window.open;

function SymWinOpen(url, name, attributes)
{
  return (new Object());
}

window.open = SymWinOpen;

//-->
</script>

<script language=JavaScript>
<!--
function winopen(url,width,height) {
var Win=window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no,status=no' );  }

function P7_JumpMenu(selObj,restore){ //v1.7 by Project Seven
	var theFullString = selObj.options[selObj.selectedIndex].value;
	if (restore) selObj.selectedIndex=0;
	var theLength = theFullString.length;
	var endPos = theFullString.lastIndexOf("~");
	var theUrl, theTarget, theParent;
	if (endPos > 0) {theUrl = theFullString.substring(0,endPos);}
	else {theUrl = theFullString;}
	endPos++
	if (endPos < theLength) {theTarget = theFullString.substring(endPos,theLength)}
	else {theTarget = "window:Main";}
	if (theTarget == "window:New") {window.open(theUrl);}
	else if (theTarget == "window:Main") {eval("parent.location='"+theUrl+"'");}
	else {eval("parent.frames[\'"+theTarget+"\'].location='"+theUrl+"'");}
}
//-->
</script>

<script language=javascript name="jumpMenu_hp">
<!--
function jumpMenu_hp(theLink){
	if(theLink.indexOf("*") != -1){   //window?
	realLink=theLink.substring(1); winName = "";
	if (realLink.indexOf("~") != -1){
		theSplit = realLink.indexOf("~");
		winName = realLink.substring(theSplit+1);
		realLink = realLink.substring(0,theSplit);
		}
	window.open(realLink,winName,'width=500,height=500,left=0,top=0,resizable,scrollbars,status');
	}else  if (theLink.indexOf("$") != -1) {  //other target?
			theSplit = theLink.indexOf("$"); theTarget = theLink.substring(0,theSplit);
			theLink = theLink.substring(theSplit+1); eval(theTarget +".location = theLink");
		}else   //default target
	      top.location=theLink;
	}
//-->
