<!--
	
// 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);

//  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>');
}