// JavaScript Document
function valida_envia()
{ 
/*
if ((document.frm.empresa.value.length == 0) || (document.frm.domicilio.value.length == 0) || (document.frm.ciudad.value.length == 0) || (document.frm.cp.value.length == 0) || (document.frm.provincia.value.length == 0) || (document.frm.telefono.value.length == 0) || (document.frm.email.value.length == 0) || (document.frm.conta1.value.length == 0) || (document.frm.cargo1.value.length == 0) || (document.frm.prod_serv.value.length == 0) || (document.frm.coop_deseada.value.length == 0))
		{
			alert("Todos los campos señalados con * son necesarios y obligatorios para poder enviar su inscripción."); 
			document.frm.empresa.focus();
			return; 
		} 
		*/
document.frm.nombre_evento.value = document.frm.evento.options[document.frm.evento.selectedIndex].text;	

	
document.frm.t_co1.value = document.frm.co1.checked; 
document.frm.t_cd1.value = document.frm.cd1.checked;
document.frm.t_co2.value = document.frm.co2.checked; 
document.frm.t_cd2.value = document.frm.cd2.checked;
document.frm.t_co3.value = document.frm.co3.checked; 
document.frm.t_cd3.value = document.frm.cd3.checked;
document.frm.t_co4.value = document.frm.co4.checked; 
document.frm.t_cd4.value = document.frm.cd4.checked;
document.frm.t_co5.value = document.frm.co5.checked; 
document.frm.t_cd5.value = document.frm.cd5.checked;
document.frm.t_co6.value = document.frm.co6.checked; 
document.frm.t_cd6.value = document.frm.cd6.checked;
document.frm.t_co7.value = document.frm.co7.checked; 
document.frm.t_cd7.value = document.frm.cd7.checked;
document.frm.t_co8.value = document.frm.co8.checked; 
document.frm.t_cd8.value = document.frm.cd8.checked;
document.frm.t_co9.value = document.frm.co9.checked; 
document.frm.t_cd9.value = document.frm.cd9.checked;
document.frm.t_co10.value = document.frm.co10.checked; 
document.frm.t_cd10.value = document.frm.cd10.checked;
document.frm.t_co11.value = document.frm.co11.checked; 
document.frm.t_cd11.value = document.frm.cd11.checked;
document.frm.t_co12.value = document.frm.co12.checked; 
document.frm.t_cd12.value = document.frm.cd12.checked;
document.frm.t_co13.value = document.frm.co13.checked; 
document.frm.t_cd13.value = document.frm.cd13.checked;

document.frm.submit(); 
}

function obtenerid(dentrodeque){
frase=document.getElementById(dentrodeque).innerHTML;
result=new Array(); 
result=frase.match(/\b\s+id=[^>\s]+\b/g);
for(i=0;i<result.length;i++){
result[i]=result[i].split('"').join('');
result[i]=result[i].split('id=').join('');
result[i]=result[i].split(' ').join('');
}
}
function mostrar(que){
for(i=0;i<result.length;i++){
if(que==result[i]){
if(document.getElementById(que).style.display=='none'){document.getElementById(que).style.display='block';}else{document.getElementById(que).style.display='none';}
}else{
eval("document.getElementById('"+result[i]+"').style.display='none'");
}
}
}
function ir(url){
window.location=url;
}

function mensaje(){
alert("HOLA MUNDO");
}

function centrar_popup(ancho, alto){
	x = (screen.width - ancho) / 2;
    y = (screen.height - alto) / 2;
    moveTo(x, y);
}

function cambiar_color_over(celda, color){
   celda.style.backgroundColor=color;
}
function cambiar_color_out(celda, color){
   celda.style.backgroundColor=color;
} 

