<!-- Begin
function NewWindow(page,width,height) {
var OpenWin;
var x = width;
var y = height;
			//window.open('URL', 'NAME', 'FEATURES', 'REPLACE')
OpenWin = this.open(page,'newWindow','width='+x+',height='+y+',toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,status=yes');
return true; 
}

function RefreshWindow()	{ opener.location.reload(true); return true; }
function GoBack()	{ window.history.back(); return true; }
function CloseWindow()	{ window.close(); return true; }
function Loader(tim)	{ setTimeout("CloseWindow()",tim); }
function LoadRefresh(tim)	{ setTimeout("RefreshWindow()",tim); setTimeout("CloseWindow()",tim); return true; }
function PrintWindow()	{ window.print(); return true; }







// End -->

/*
var WindowHandler;
function NewWindow(weburl,wide,high)	{  
	WindowHandler = window.open(weburl,'confirmwindow','width='+wide+',height='+high+',scrollbars,left=10,top=20,screenX=10,screenY=20'); 
	return true; 
*/
