

<!-- Begin hiding Script from Old Browsers
var openWindow = new Array();



function majorBrowser() {
	if (isMsie4orGreater() || isNetscape3orGreater()) {
		return true;
	}
	else {
		return false;
	}
}

function isMsie4orGreater() {
  	var ua = window.navigator.userAgent;
	var msie = ua.indexOf ( "MSIE " );
	if (msie > 0)	{
		return (parseInt(ua.substring(msie+5,ua.indexOf(".", msie ))) >=4) && (ua.indexOf("MSIE 4.0b") < 0);
	}
 	return false;
}

function isNetscape3orGreater(){
	if (navigator.appName == "Netscape" && parseInt(navigator.appVersion) >= 3) {
		return true;
        }
	else {
		return false;
        }
}

function openwin(URL,name,  windowcfg) {
	var newWin = window.open (URL, name, windowcfg);
	if (navigator.appVersion.indexOf("2.0") != -1
	   || navigator.appVersion.indexOf("(X11") != -1
	   || navigator.appVersion.indexOf("(Mac") != -1) {
		newWin = window.open(URL, name, windowcfg);
	}
	return newWin;
}






function define_sm(term, message,name, windowcfg) {
var defWin = window.open ("", name, windowcfg);
if (navigator.appVersion.indexOf("2.0") != -1
   || navigator.appVersion.indexOf("(X11") != -1
   || navigator.appVersion.indexOf("(Mac") != -1) {
defWin = window.open("", name, windowcfg);
defWin.document.open();
defWin.document.write("<HTML><HEAD></head><BODY>");
defWin.document.bgColor="#FDFBF3";
defWin.document.write("<B>");
defWin.document.write("<FONT COLOR='#1C1CBD' FACE='Times New Roman, Times, Serif' size='3'>");
defWin.document.write(term);
defWin.document.write("</FONT>");
defWin.document.write("</B>");
defWin.document.write("<FONT COLOR='#000000' FACE='ARIAL, SERF, Helvetica' size='2'>");
defWin.document.write(message);
defWin.document.write("</FONT>");
defWin.document.write("<P>");
defWin.document.write("<CENTER>");
defWin.document.write("<FORM>");
defWin.document.write("<INPUT TYPE='button' VALUE='OK' onClick='self.close()'>");
defWin.document.write("</FORM>");
defWin.document.write("</CENTER>");
defWin.document.write("</BODY></HTML>");
defWin.document.close();
	}
	else
	
	{defWin.document.open();
defWin.document.write("<HTML><HEAD></head><BODY>");
defWin.document.bgColor="#FDFBF3";
defWin.document.write("<B>");
defWin.document.write("<FONT COLOR='#1C1CBD' FACE='Times New Roman, Times, Serif' size='3'>");
defWin.document.write(term);
defWin.document.write("</FONT>");
defWin.document.write("</B>");
defWin.document.write("<FONT COLOR='000000' FACE='ARIAL, SERF, Helvetica' size='2'>");
defWin.document.write(message);
defWin.document.write("</FONT>");
defWin.document.write("<P>");
defWin.document.write("<CENTER>");
defWin.document.write("<FORM>");
defWin.document.write("<INPUT TYPE='button' VALUE='OK' onClick='self.close()'>");
defWin.document.write("</FORM>");
defWin.document.write("</CENTER>");
defWin.document.write("</BODY></HTML>");
defWin.document.close();
	}
	
	return defWin;
}

function define(term, message, w, h, name) {
	var windowcfg = "toolbar=0,location=0,status=0,menubar=0,scrollbars=1, resizable=0, history=0,width=" + w + ",height=" + h;
	
if (majorBrowser()) {
		if (openWindow[name]) {
			if (openWindow[name].closed) {
				openWindow[name] = null;
				openWindow[name] = define_sm(term,message, name, windowcfg);
			}
			else {
				openWindow[name].focus();
					openWindow[name] = null;
				openWindow[name] = define_sm(term,message, name, windowcfg);
			
			}
		}
		else {
			openWindow[name] = define_sm(term, message, name, windowcfg);
		}
	}
	else {
		define_sm(term, message, name, windowcfg);
	}
}


//A function that opens a multimedia windows


function mm_w(URL, w, h, name) {
	var windowcfg = "toolbar=0,status=0,menubar=0,scrollbars=0,resizable=1, history=1,width=" + w + ",height=" + h;
	if (majorBrowser()) {
		if (openWindow[name]) {
			if (openWindow[name].closed) {
				openWindow[name] = null;
				openWindow[name] = openwin(URL, name, windowcfg);
			}
			else {
				openWindow[name].focus();
				openWindow[name].location.href= URL;
			}
		}
		else {
			openWindow[name] = openwin(URL, name, windowcfg);
		}
	}
	else {
		openwin(URL, name, windowcfg);
	}
}


function internal_win(URL, w, h, name) {
	var windowcfg = "toolbar=0,status=0,menubar=1,scrollbars=1,resizable=1, history=1,width=" + w + ",height=" + h;
	if (majorBrowser()) {
		if (openWindow[name]) {
			if (openWindow[name].closed) {
				openWindow[name] = null;
				openWindow[name] = openwin(URL, name, windowcfg);
			}
			else {
				openWindow[name].focus();
				openWindow[name].location.href= URL;
			}
		}
		else {
			openWindow[name] = openwin(URL, name, windowcfg);
		}
	}
	else {
		openwin(URL, name, windowcfg);
	}
}
	

function www_w(URL, w, h, name) {
	var windowcfg = "toolbar=1,status=0,menubar=1,scrollbars=1,resizable=1, history=1,width=" + w + ",height=" + h;
	if (isNetscape3orGreater()){
		if (openWindow[name]) {
			if (openWindow[name].closed) {
				openWindow[name] = null;
				openWindow[name] = openwin(URL, name, windowcfg);
			}
			else {
				
				openWindow[name].focus();
				openWindow[name].location.href= URL;
			        
			}
		}
		else {
			openWindow[name] = openwin(URL, name, windowcfg);
		}
	}
	else {
		
	window.open(URL, '',windowcfg);

	}
}



//A function that writes to the status bar

function sb_msg(what) {
window.defaultStatus="";
return what;

}

// End Hiding Script -->

