function VerVentana()
{
var myWindow = window.open("", "AvisoAlertaInformacion", "toolbar=no,directories=no,menubar=no,scrollbars=no,status=no,resizable=no,width=540,height=300");
	myWindow.document.write("<html>\n<head>\n<meta http-equiv=\"Content-Type\" content=\"text/html;charset=iso-8859-1\"><title>"+tipo+" del Centro Meteorol&oacute;gico Zona Sur</title>\n");
	myWindow.document.write("<link rel=\"stylesheet\" href=\"css/meteosur.css\" type=\"text/css\">\n");
	myWindow.document.write("<body leftmargin=\"10\" topmargin=\"10\" rightmargin=\"10\" bottommargin=\"10\" marginwidth=\"0\" marginheight=\"0\" onload=\"window.focus();\">");
if (tipo=="Alerta")
		{
myWindow.document.write('<img src="imagenes/barra_alerta.gif" border=0 alt=\"\">');
		}
if (tipo=="Aviso")
		{
myWindow.document.write('<img src="imagenes/barra_aviso.gif" border=0 alt=\"\">');
		}
if (tipo=="Informacion")
		{
myWindow.document.write('<img src="imagenes/barra_info.gif" border=0 alt=\"\">');
		}		
myWindow.document.write("<br><font size=3 face=Tahoma color=#000000><strong>Fecha: "+ fecha1 +"</strong></font>");	
myWindow.document.write("<br><br><font size=3 face=Tahoma color=#000000><strong>Apreciaci&oacute;n General</strong></font>");
myWindow.document.write("<br><font size=3 face=Tahoma color=#000000>"+apreciacion+"</font>");
myWindow.document.write("<br><br><font size=3 face=Tahoma color=#000000><strong>Condici&oacute;n Pronosticada</strong></font>");
myWindow.document.write("<br><font size=3 face=Tahoma color=#000000>"+descripcion+"</font>");
myWindow.document.write("<br></body>\n</html>");
myWindow.document.close() 
}
if ( aviso == true )
{
if (tipo=="Alerta")
		{
		document.write('<a href="javascript:VerVentana();"><img src="imagenes/alerta_a.gif" border=0></a>');
		}
if (tipo== "Aviso")
		{
		document.write('<a href="javascript:VerVentana();"><img src="imagenes/aviso_a.gif" border=0></a>');
		}
if (tipo=="Informacion")
		{
		document.write('<a href="javascript:VerVentana();"><img src="imagenes/info_a.gif" border=0></a>');
		}	
}
if ( aviso == false)
{
	document.write('<img src="imagenes/no_aviso.gif" border=0></a>');
}