//Set the properties for the new window
function ShowPropertiesWindow(){

	var str = "width=260px,height=94px";	
		
	if (window.screen) {
			
		var ah = screen.availHeight;
		var aw = screen.availWidth;

		str += ",top=" + ((ah / 2) - 10);
		str += ",left=" + ((aw / 2) - 90);		
		
	}

	return str;
}
//----------------------------------

//Set the properties for the new window
function HidePropertiesWindow(){

	var str = "width=-100,height=-100";	

	if (window.screen) {			
		var ah = screen.availHeight;
		var aw = screen.availWidth;

		str += ",top=" + ((ah / 2) - 10);
		str += ",left=" + ((aw / 2) - 90);			
	}

	return str;
}
//----------------------------------

//Open the new Window
function OpenWaitBox(){ 

	var WaitBox = window.open(HT_URL + "/FrontEnd/Pages/WaitBox.aspx" , 'popup' , ShowPropertiesWindow() );  
	
	if(WaitBox!=null)
		WaitBox.focus();	
		
}
//----------------------------------

//Close the Window
function CloseWaitBox(){

	var WaitBox = window.open(HT_URL + "/FrontEnd/Pages/WaitBox.aspx" , 'popup' , HidePropertiesWindow());  

	if(WaitBox!=null)
		WaitBox.close();	
}
//----------------------------------

