// JavaScript Document
function onOver(obj)
{
	document.getElementById(obj+'Text').className = "optOverText";
}
function onOut(obj)
{
	document.getElementById(obj+'Text').className = "optText";
}
function openMe(obj)
{
	window.open(obj, "_self");	
}
function popup(wURL, wName)
{
	winWidth = screen.availWidth;
	winHeight = screen.availHeight;
	wFeatures = 'width=' + winWidth + ',height=' + winHeight + ',top=0,left=0';
	myWin = window.open(wURL,wName,wFeatures)
	return false;
}
