//---------------------------------------------------------------------//
function marquesinaStop(){
	document.getElementById("marque").stop();
}
function marquesinaPlay(){
	document.getElementById("marque").start();
}
function validarcampo()
{   var mal=false; 
    numero=document.forms[0].elements.length; 
    for(a=0;a<numero;a++)
	{ 
    if ( (document.forms[0].elements[a].name!=="enviar") && (document.forms[0].elements[a].name!=="destino") ) {if (document.forms[0].elements[a].value==""){document.forms[0].elements[a].style.backgroundColor="#ffffcc";mal=true;} 
    else{document.forms[0].elements[a].style.backgroundColor="white";}};
    }; 
    if(mal){alert("Por favor, rellene las cajas coloreadas");} 
    else{
	document.getElementById("recipient").value= document.getElementById("destino").value+"@asoem.org.ar"; 
	document.getElementById("enviar").value="Un momento....";
	document.forms[0].submit();
	    }; 
} 
function validarbanco()
{   var mal=false; 
    numero=document.forms[0].elements.length; 
    for(a=0;a<numero;a++)
	{ 
    if ( (document.forms[0].elements[a].name!=="enviar") && (document.forms[0].elements[a].name!=="destino") ) {if (document.forms[0].elements[a].value==""){document.forms[0].elements[a].style.backgroundColor="#ffffcc";mal=true;} 
    else{document.forms[0].elements[a].style.backgroundColor="white";}};
    }; 
    if(mal)
	     {alert("Por favor, rellene las cajas coloreadas");} 
    else {
	document.getElementById("recipient").value= document.getElementById("destino").value+"@asoem.org.ar"; 
	document.getElementById("enviar").value="Un momento....";
	document.forms[0].submit();
	     }; 
} 

//---------------------------------------------------------------------//
function correo(usuario,titulo) { 
 
locationstring = "mailto:" + usuario + "@asoem.org.ar" + "?subject="+titulo; 
window.location = locationstring; 
	document.getElementById("recipient").value= document.getElementById("destino").value+"@asoem.org.ar"; 
} 

