// JavaScript Document
function onOver(co)
{
	co.style.backgroundColor="#ADCDFD";
	//co.style.color = "#CC0000";
	co.style.cursor="pointer";
}
function onOut(co)
{
	co.style.backgroundColor= "#C6E2FF";
	//co.style.color="";
	co.style.cursor="default";
}
function redirectme(wheretogo)
{
	location.href = wheretogo;
}