	function JS_Open_NewWindow( sSrc, sName, sWidth, sHeight ){
		oWin=window.open( sSrc, sName,'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,width='+sWidth+',height='+sHeight+',left=0,top=0,resizable=yes');
		oWin.focus();
	}