function popCentro(mypage, myname, w, h, scroll)
	{
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable';
	win = window.open(mypage, myname, winprops);
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	}
			
function valida(forma)
	{
	var nopasa = 0;
	if(document.forms[forma].nom.value=='')
		{ nopasa = 1; alert ('Favor de indicar su nombre'); document.forms[forma].nom.focus(); return false;}
	else if(document.forms[forma].correo.value=='')
		{ nopasa = 1; alert ('Favor de indicar su correo'); document.forms[forma].correo.focus(); return false;}
	else if(document.forms[forma].tel.value=='')
		{ nopasa = 1; alert ('Favor de indicar su teléfono'); document.forms[forma].tel.focus(); return false;}
	else if(document.forms[forma].msg.value=='')
		{ nopasa = 1; alert ('Favor de indicarnos en qué podemos servirle'); document.forms[forma].msg.focus(); return false;}
	if (nopasa == 0) { document.forms[forma].submit(); }
	}
	
/*
Scripting de Menu
alsacreations.com
*/
window.onload=montre;
function montre(id) {
var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
}
/* termina menu */
