function fecha()
{
	var hoy= new Date();
	var dia= new Array("Domingo","Lunes","Martes","Miercoles","Jueves","Viernes","Sabado");
	var mes= new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
	document.write(dia[hoy.getDay()]+' '+ (hoy.getDate()<10?'0'+hoy.getDate():hoy.getDate())+' de '+mes[hoy.getMonth()]+ ' de '+hoy.getYear());
	return 0;
}
function newwindow_reporte(direccion)
{
	var nueva;
	nueva=window.open(direccion,'nueva',"toolbar,status,scrollbars,height=600,width=800");
	nueva.focus();
	}
function newwindow_mail(direccion)
{
	var nueva;
	nueva=window.open(direccion,'nueva',"height=250,width=400");
	nueva.focus();
	}
function newwindow_chat(url){
var newwindow;
newwindow=window.open(url,'name','height=500,width=200,left=20,top=20,toolbar=no,menubar=no,directories=no,location=no,scrollbars=yes,status=no,resizable=no,fullscreen=no');
if (window.focus) {newwindow.focus()}
}
function valida_envia(){
	//valida el correo_cliente
	if (document.form1.correo_cliente.value.length==0){
	   alert("Tiene que escribir el correo del cliente")
	   document.form1.correo_cliente.focus()
	   return 0;
	}
	//valida el correo_ejecutivo
	if (document.form1.correo_ejecutivo.value.length==0){
	   alert("Tiene que escribir el correo del ejecutivo")
	   document.form1.correo_ejecutivo.focus()
	   return 0;
	}
	//el formulario se envia
	document.form1.submit();
}
function valida_envia1(){
	//valida el correo_cliente
	if (document.form1.correo_cliente.value.length==0){
	   alert("Tiene que escribir el correo del cliente")
	   document.form1.correo_cliente.focus()
	   return 0;
	}
	//el formulario se envia
	document.form1.submit();
}