function copia(usuario,email){
	var login2=usuario;
	var e_mail=email;
	document.getElementById(login2).value=document.getElementById(e_mail).value;
}

function controla_prov(){
	var pais="pais";
	var prov="provincia";
	if(document.getElementById(pais).value=='ES'){
		document.getElementById(prov).disabled=false;
	}else{
		document.getElementById(prov).disabled=true;
	}
}


function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}
