function get_xmlhttp() {
try {
  xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
 } catch (e) {
  try {
   xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  } catch (E) {
   xmlhttp = false;
  }
 }
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
  xmlhttp = new XMLHttpRequest();
}
return xmlhttp
}



function showeMenu()
{

var xmlhttpU = get_xmlhttp();
xmlhttpU.open('GET',"parseMenu.php", true);
xmlhttpU.onreadystatechange=function()
{
  if(xmlhttpU.readyState==4)
  {
   document.getElementById("eMenu").innerHTML=xmlhttp.responseText;
  }
}
xmlhttpU.send(null);
}


function showMenuInfo()
{

var xmlhttpU = get_xmlhttp();
xmlhttpU.open('GET',"parseInfo.php", true);
xmlhttpU.onreadystatechange=function()
{
  if(xmlhttpU.readyState==4)
  {
   document.getElementById("menuInfo").innerHTML=xmlhttp.responseText;
  }
}
xmlhttpU.send(null);
}



function sonido(status,ss)
{
   
   switch(status)
   {
   case "on":
   parent.document.getElementById('chan').innerHTML='<embed autostart=true loop=true src="http://www.mycoastalsystem.com/despacho2/sonidos/'+ss+'" hidden=true></embed>';
   break;
	  
   case "off":
   parent.document.getElementById('chan').innerHTML="";
   break;
   }

}
