

/************************************************************************/
/*************************** Open window ********************************/
/************************************************************************/
function openWin(TheUrl,W,H,Scroll)
{
	wLeft = (screen.width) ? (screen.width-W)/2 : 0;
	wTop = (screen.height) ? (screen.height-H)/2 : 0;
	window.open(TheUrl,"","width="+W+",height="+H+",top="+wTop+",left="+wTop+",scrollbars="+Scroll);
}
