function confirmationAlert(msg, about2close)
	{			
		//if (!event_ && window.event) event_ = window.event;
		
		if(about2close == true){
			if(window.event.clientY<-70)  
				return window.event.returnValue = msg;
		}
		else{
			agree = confirm (msg);
			if(agree == false) return false;
			else return true;
		}
	}
