function getMouseOver(id,color){
	cell = document.getElementById(id);
	cell.style.backgroundColor=color;
}
function getMouseOut(id,color){
	cell = document.getElementById(id);
	cell.style.backgroundColor=color;
}


function openWin(pageName,popHeight){
	eval("window.open('" + pageName + "','NewWindow1','toolbar=no,width=604,height="+ popHeight +",directories=no,status=no,scrollbars=no,resizable=no,menubar=no,screenX=0,screenY=0,top=0,left=0')");
}

