<!-- 
var disclaimer=null;
function openDisclaimer(URL, WinName) {
	disclaimer=window.open(URL,WinName,'height=828,width=725,screenX=50,screenY=50,top=10,left=100,toolbar=no,menubar=no,scrollbars=yes,resizable=yes,status=no,titlebar=no,captionbar=0');
	window.name="Disclaimer";
}

function popUpWindow(URL, NAME, HEIGHT1, WIDTH1, SCROLL, RESIZE1, TOOLBAR, MENUBAR){
  	hwstring="scrollbars=" + SCROLL + ",width=" + WIDTH1 + ",height=" + HEIGHT1 + ",resizable=" + RESIZE1 + ",toolbar=" + TOOLBAR + ",menubar=" + MENUBAR;
  	var newwin = window.open(URL, NAME, hwstring);
} 

//-->
