function rollOverMenu(e,f){
	if(f == "on")
	{
		document.getElementById(e).className="on";
	}
	if(f == "off")
	{
		document.getElementById(e).className="off";
	}
}

function popTable(Table,W,H)
{
//alert("dddd");
var optionsGenerales="menubar=yes, toolbar=no, location=no, directories=no, status=no, scrollbars=yes, resizable=yes, copyhistory=no, left=100, top=100";
var width=",width=";
var height=",height=";

var PopParam=optionsGenerales.concat(width.concat(W.concat(height.concat(H))));

window.open(Table, "popup", PopParam);
}

function gotourl(e){
	document.location.href=e;
}