function NewWindow(mypage,myname,w,h,scroll){
	//return false;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings =
	'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	win = window.open(mypage,myname,settings)
	if(win.window.focus){win.window.focus();}
}
function enviarFormularioContacto(){
	nombre = document.frmContacto.nombre.value;
	telefono = document.frmContacto.telefono.value;
	consulta = document.frmContacto.consulta.value;
	if (nombre == "" || telefono == "" || consulta == "")
		alert(" Por favor, rellene todos los campos marcados con asterisco \n y vuelva a enviar el formulario. Muchas gracias.");
	else
		document.frmContacto.submit();
}