////////////////
////GENERAL////
////////////////


function newWindow(mypage, w, h)
{
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2 -50;
	w=w+15;
	h=h+15;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=no,resizable=no,toolbar=no,status=no,location=no';
	win = window.open(mypage, 'ampliada', winprops)
	if (parseInt(navigator.appVersion) >= 4) 
	{ win.window.focus(); }
}//end newWindow



////////////////
////CONTACTO////
////////////////

function new_contact(){
		if (new_contact2()){
			document.data_form.submit();
		}
}//end new_contact

function new_contact2(){
		if (document.data_form.nombre.value==""){
			alert("Debe escribir su nombre.");
			document.data_form.nombre.focus();
			return false;
		}
		if (document.data_form.asunto.value==""){
			alert("Debe escribir un Asunto para su mensaje.");
			document.data_form.asunto.focus();
			return false;
		}
		if (document.data_form.mensaje.value==""){
			alert("Debe escribir un mensaje.");
			document.data_form.mensaje.focus();
			return false;
		}
		return true;
}//end new_contact2

