function over(target)
{
	document.getElementById(target).style.backgroundColor = 'navy';
}
function out(target)
{
	document.getElementById(target).style.backgroundColor = '#FFD61B';
}
function tdover(target)
{
	document.getElementById(target).style.backgroundColor = '#CCCCCC';
}
function tdout(target)
{
	document.getElementById(target).style.backgroundColor = '#FFFFFF';
}
function popup(target)
{
    window.open(target, "popup", "height=5, width=300");
    //alert(target);
}
function scaler(target)
{
    var screensize = screen.availWidth;
    var emptyspace = screensize - 791;
    var gotoleft = emptyspace / 2;
    
	document.getElementById(target).style.position	='absolute';
	document.getElementById(target).style.left	= gotoleft + 'px';
}
