function delStatus()
{
	window.status=''; 
	return true;
}

function out(out)
{
	var xhr_object = null; 
	var out = out; 
	 
	if(window.XMLHttpRequest)
	   xhr_object = new XMLHttpRequest(); 
	else if(window.ActiveXObject) 
	   xhr_object = new ActiveXObject("Microsoft.XMLHTTP"); 
	else 
		return; 
	 	 
	xhr_object.open('GET','out.php?out='+out,true); 
	 
	xhr_object.onreadystatechange = function() 
	{ 
		if(xhr_object.readyState == 4) 
			return;
	} 
	 
	xhr_object.send(null); 

}
