// JavaScript Document

function NewWindow(sURL, sWidth, sHeight){
	//var win = null;
	/* Auto center window */
	sName = 'pop';
	LeftPosition = (screen.width) ? (screen.width-530)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-740)/2 : 0;
	settings ='height=' +sHeight+ ',width=' +sWidth+ ',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,resizable, status=no, titlebar=no'
	win = window.open(sURL,sName,settings)
}