<!--
function NewWindow(URL,w,h,scroll,sizeable,name)
{
	var win = null;

	var LeftPosition;
	var TopPosition;
	var settings; 
	if(name=='')
	{
	  name='win';
	}

	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable='+sizeable+''
	win = window.open(URL,name,settings)
	if(win.window.focus){win.window.focus();}
}
//-->
