var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-50-h)/2 : 0;
settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
if(win.window.focus){win.window.focus();}
return false;
}

function mouseovertr (o)
{
	o.style.backgroundColor= "#D3E5FB";
	o.style.cursor="hand";	
}

function mouseouttr(o)
{
	o.style.backgroundColor="#ffffff"
}

function mouseovertd (o)
{
	o.style.borderStyle="solid"
	o.style.borderColor="#316AC5"
	o.style.color="#ffffff"	
}

function mouseouttd (o)
{
	o.style.color="#003366"
	o.style.borderColor="#D3E5FB"
}


