function mail(name,domain){
	window.location = 'mailto:' + name + '@' + domain + '?subject=Consulta desde Web Preinco'; 
}
function cambiar(esto) {
	vista=document.getElementById(esto).style.display;
	if (vista=='none'){vista='block';}
	else {vista='none';}
	document.getElementById(esto).style.display = vista;
}
function abrirventana (url) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(url, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=300,height=260,left = 250%,top = 100');");
}