function getHTTPObject()
{
	// code for Mozilla, etc.
	if (window.XMLHttpRequest)
  	{
  		xmlhttp=new XMLHttpRequest()
  	}
// code for IE
	else if (window.ActiveXObject)
  	{
  		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")
  	}
	return xmlhttp;
}
var http10 = getHTTPObject();

function hide_flash_box()
{
    
	document.getElementById('flash_check').style.display = 'none';
	document.getElementById('menu1Container').style.top = '189px';	
	document.getElementById('menu2Container').style.top = '189px';	
	document.getElementById('menu3Container').style.top = '189px';	
	document.getElementById('menu4Container').style.top = '189px';	

    var url = SITE_URL+"ajax_file/ajax_top_delete.php";
	//alert(url);return false;
	http10.open("GET", url, true);
	http10.onreadystatechange = handleHttpResponse1;
  	http10.send(null);
}

function handleHttpResponse1() 
{ 
	if (http10.readyState == 4) 
	{	
			//window.location.reload()
  	}
}
