window.onerror = DesabilitaErros; 

function DesabilitaErros() { 
   return true; 
} 

function lerCookie(nome) {
   var nomeEQ = nome + "=";
   var ca = document.cookie.split(';');
   for (var i = 0; i < ca.length; i++) {
	  var c = ca[i];
  	  while (c.charAt(0)==' ') {
	     c = c.substring(1,c.length);
	  }
	  if (c.indexOf(nomeEQ) == 0) {
	     return c.substring(nomeEQ.length,c.length);
 	  }
   }
   return null;
}

ID_ID360 = lerCookie("ID_ID360");
idsite = lerCookie("ValorParametro");   
if (document.frmContato != undefined) {
   if (document.frmContato.ID_ID360 != undefined) {
      document.frmContato.ID_ID360.value = ID_ID360;	   
   }
   if (document.frmContato.idsite != undefined) {
	  document.frmContato.idsite.value = idsite; 
   }
}

