
<!--
function Rollover(theImage, theSrc){
  var objStr,obj;
  if(document.images){
    if (typeof(theImage) == 'string') {
      objStr = 'document.' + theImage;
      obj = eval(objStr);
      obj.src = theSrc;
    } else if ((typeof(theImage) == 'object') && theImage && theImage.src) {
      theImage.src = theSrc;
    }
  }
}

function navigate(formobj){
	var location=formobj.options[formobj.options.selectedIndex].value
	if(location!='none')
	{
	 parent.location=location
	}
}

function _get(which)
{
which.submit();
}

function launch(newURL, newName, newFeatures, orgName) {
  var remote = open(newURL, newName, newFeatures);
  if (remote.opener == null)
    remote.opener = window;
  remote.opener.name = orgName;
  return remote;
}

function launchDirections(pagename) {
  myRemote = launch(pagename,
                    "myRemote",
                    "height=484,width=300,alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=0,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=1,top=0, left=200, screenx=0, screeny=0, resizable=1,scrollbars=0,status=0,titlebar=0,toolbar=1,z-lock=0",
                    "myWindow");
}

function PopPdf(pagename) {
  myRemote = launch(pagename,
                    "myRemote",
                    "height=400,width=600,alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=0,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,top=0, left=100, screenx=0, screeny=0, resizable=1,scrollbars=0,status=0,titlebar=0,toolbar=0,z-lock=0",
                    "myWindow");
}

function PopPrinter(pagename) {
  myRemote = launch(pagename,
                    "myRemote",
                    "height=500,width=640,alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=0,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=1,top=0, left=100, screenx=0, screeny=0, resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=1,z-lock=0",
                    "myWindow");
}

function NewWindow(mypage, myname, w, h, scroll, thetoolbar) {
window.name="callingWindow";
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable,toolbar='+thetoolbar+''
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

