<!--
	
// Pop-up Window Script -->
function openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// Reloads the window if Nav4 resized -->
function MM_reloadPage(init) {  
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
//-->


<!--
function MM_popupMsg(msg) { //v1.0
  alert(msg);
}
//-->



//  pulldown jump-to-URL script (Quickly Find Information)
function formHandler2(form){
if(form.options[form.selectedIndex].value != "")
window.location.href = form.options[form.selectedIndex].value;
 }

function openWindow(url, name)
{  
    popupWin = window.open(url, name, "width=392,height=314,status=no,toolbar=no,menubar=no");
}

function sendevent(event,action,validate)
{	
	var ret = true;

	if(typeof(validate) != 'undefined')
	{
		if (validate != '')
			eval(" ret=" + validate + "()");
	}
	if (ret == true)
	{
		document.forms[0].event.value = event;
		document.forms[0].action = action;
		document.forms[0].method = 'post';
		document.forms[0].submit();
		return(true);
	}
	return(false);
}

// anti spam email script
var doJAVASCRIPT;
var suffix;
function jemail(user, doJAVASCRIPT, suffix){
document.write('<a href="' + 'mailto:' + user + '@' + doJAVASCRIPT + '.' + suffix + '">' + user + '@' + doJAVASCRIPT + '.' + suffix + '</a>');
}

// pop window for CEEB code

function PopUpWindow(url,winName,features)
{
	var win = window.open(""+url, winName, features);
}

function MM_openWindow(theURL,winName,launchWin,features) { //v1.0
  if (launchWin == ''){
    window.open(theURL,winName,features);
  }
  else{
    var controller = window.open(theURL,winName,features);
    if (controller.opener == null){
      controller.opener = self;
    }
    controller.opener.name = launchWin;
    return controller;
  }
}

