  

function off(LinkObject)
{
LinkObject.style.background = '#FFFFFF';
LinkObject.style.cursor = 'default';
}
function on(LinkObject)
{
LinkObject.style.background = '#FFD373';
LinkObject.style.cursor = 'hand';
}
function bgcoloron(layerid)
{
if (document.layers)
	window.document.layers[layerid].bgColor="#FFD373";
else
	document.all[layerid].style.background="#FFD373";
}
function bgcoloroff(layerid)
{
if (document.layers)
	window.document.layers[layerid].bgColor="#FFFFFF";
else
	document.all[layerid].style.background="#FFFFFF";
}
function changesize()
{
window.resizeTo(700,500);
window.focus();
}
