// JavaScript Document
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function popUp(URL,popWidth,popHeight) 
{
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=" + popWidth + ",height=" + popHeight + ",left = 0,top = 0');");
}

function loadingScreen(){
	window.waitWin = window.open('/wait','loadingWin','height=300,width=800,left=300,top=375,location=no,menubar=no,resizable=no,status=no,toolbar=no');
	window.onunload=close_wait;
}

function close_wait()
{
    window.waitWin.close();
}





//-->