<!--
browserName=navigator.appName; 
browserVer=parseInt(navigator.appVersion);

if ((browserName=="Netscape" && browserVer>=3) || (browserName=="Microsoft Internet Explorer" && browserVer>=4))    
  version="browser_OK";
else
  version="browser_not_supported";

var dayName = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monName = new Array ("Jan","Feb","Mar","Apr","May","Jun","Jul",
"Aug","Sep","Oct","Nov","Dec")
var now = new Date

function getFullYear(d) {
yr = d.getYear();
if (yr < 1000)
yr+=1900;
return yr;
}

function openW(theURL,winName,features) {
window.open(theURL,winName,features);
}

function openPrintWindow(width,height,url) {
	window.open(url,"printWindow","width="+width+",height="+height+",menubar=no,toolbar=yes,resizable=yes,statusbar=no,scrollbars=yes");
}

function openPrintWindow2(width,height,url) {
	window.open(url,"printWindow2","width="+width+",height="+height+",menubar=no,toolbar=yes,resizable=yes,statusbar=no,scrollbars=yes");
}

function openPrintWindow3(width,height,url) {
	window.open(url,"printWindow3","width="+width+",height="+height+",menubar=no,toolbar=yes,resizable=yes,statusbar=no,scrollbars=yes");
}

function printMe() {
	var fname = document.location.href;
	fname = fname.substring(fname.lastIndexOf("/")+1, fname.lastIndexOf("."));
	fname += "_print.html";
	
	openPrintWindow(600,400,fname);
}

function plainWindow(width,height,url) {
	window.open(url,"newWindow","width="+width+",height="+height+",menubar=no,toolbar=no,resizable=yes,statusbar=no,scrollbars=yes");
}
//-->
