function prepareTargetBlank(className){var as=document.getElementsByTagName('a');for(i=0;i<as.length;i++){var a=as[i];r=new RegExp("(^| )"+className+"($| )");if(r.test(a.className)){a.target="_blank";}}}
function openTaller(id){closeTaller();var elemento=$('taller'+id);elemento.style.display='block';var contenedor=$('titulo_taller'+id);contenedor.style.backgroundImage='url(images/programas/icon_open.jpg)';}
function closeTaller(){var arregloElementos=$$('DIV.taller');var arregloContenedores=$$('DIV.titulo_taller');for(var i=0;i<arregloElementos.length;i++){arregloElementos[i].style.display='none';arregloContenedores[i].style.backgroundImage='url(images/programas/icon_close.jpg)';}}
function validarContacto(){var nombre=document.getElementById('nombre').value.trim();var email=document.getElementById('mail').value.trim();if(nombre.length==0){alert('El nombre es obligatorio');return false;}
if(email.length==0){alert('La direccion de e-mail es obligatoria');return false;}
if(!hasEmailFormat(email)){alert('La direccion de e-mail no tiene un formato válido');return false;}
if(document.getElementById('consulta')){var cuerpo=document.getElementById('consulta').value.replace("\n",'<br />').replace("\r",'').trim();if(cuerpo.length==0){alert('El comentario es obligatorio');return false;}}
return true;}
function limpiarContacto(){document.getElementById('nombre').value='';document.getElementById('mail').value='';document.getElementById('telefono').value='';document.getElementById('ciudad').value='';document.getElementById('consulta').value='';}
