
function win(page, title, width, height, closebutton)
{
	if (closebutton) {
		closebutton = "yes";
	}
	else {
		closebutton = "";
	}
	fonster=window.open('','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=640,height=480');
	fonster.document.write("<html><head><script language='JavaScript'>self.location='win.php?p=" +page+ "&t=" +title+ "&cb=" +closebutton+ "';</script></head></html>");
}


function tint(col1, col2, color)	{
	if (navigator.appName == "Netscape") { // NN
			document.getElementById(col1).style.backgroundColor=color;
			document.getElementById(col2).style.backgroundColor=color;
	}
	else {	// Other
		document.all[col1].style.backgroundColor=color;
		document.all[col2].style.backgroundColor=color;
	}
}
