var xmlHttp

function showUser(drop,seccionactual)
{ 
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
 {
 alert ("Browser does not support HTTP Request")
 return
 }
var url="content.stellenmarkt.id.php"
url=url+"?q="+drop
url=url+"&dropdown="+drop
url=url+"&actual="+seccionactual
xmlHttp.onreadystatechange=stateChanged 
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
}

function stateChanged() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
 { 
 document.getElementById("txtHint").innerHTML=xmlHttp.responseText 
 } 
}

function GetXmlHttpObject()
{
var xmlHttp=null;
try
 {
 // Firefox, Opera 8.0+, Safari
 xmlHttp=new XMLHttpRequest();
 }
catch (e)
 {
 //Internet Explorer
 try
  {
  xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
  }
 catch (e)
  {
  xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
 }
return xmlHttp;
}

function submitMadMimiForm(field){
	document.cookie= 'ppkcookie1='+document.location+' path=/';
	// Si no se a aceptado no se suscribe al boletín
	//if (document.getElementById('accept').checked!=true) return;
	
    //document.getElementById('signup_email').value=document.getElementById(field).value;	
	document.getElementById("madmimiform2").submit();
}
