function AbrirVentanaImagen(imagen, ancho, alto, titulo, posizda, posarriba, tipo_win)
{
	tipo_ventana="width="+ancho+",height="+alto+",left="+posizda+",top="+posarriba+","+tipo_win;
	newWindow = window.open("","newWindow",tipo_ventana);
	newWindow.document.open();
	newWindow.document.write('<html><head><title>'+titulo+'</title></head><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	newWindow.document.write('<img src='+imagen+' width='+ancho+' height='+alto+' alt='+titulo+'>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}

function AbrirVentana(direccion, nombre, tipo_win)
{
	var win=null;
	win=window.open(direccion, nombre, tipo_win);
	win.focus();
	return;
}

function BarraEstado(txt)
{
	window.status=txt;
	return;
}

function ValidarMail(el_mail)
{
	if(el_mail.indexOf('@',0)==-1)
		 return (false);
	return (true);
}

function RedimVentana()
{
	var ventana=null;
	ventana=window.screen
	ventana.resizeTo(790,590);
	return;
}