//Created: 5/11/07
//<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function launch(newURL, newName, newFeatures, orgName)
{
	var features = "resizable=1,scrollbars=yes,menubar=yes,status=yes,toolbar=yes,location=yes,width=780,height=500"
	var remote = open(newURL, newName, features);
		if (remote.opener == null) // if something went wrong
			remote.opener = window;
			remote.opener.name = orgName;
	return remote;
}

function launchmap(newURL, newName, newFeatures, orgName)
{
	var features = "resizable=0,scrollbars=no,menubar=no,status=no,toolbar=no,location=no,width=825,height=625"
	var remote = open(newURL, newName, features);
		if (remote.opener == null) // if something went wrong
			remote.opener = window;
			remote.opener.name = orgName;
	return remote;
}
//-->