// Rutinas de las pagina fijas

function Mensaje(etiqueta,alto, ancho, mens) {
	ventana=window.open("","mensaje","height="+alto+",width="+ancho+",top=30,left=50");
	ventana.document.write("<TITLE>ˇInformación!</TITLE><BODY>");
	ventana.document.write("<FONT FACE='VERDANA, ARIAL' SIZE=3 COLOR='#9F2186'><B>"+etiqueta+"</B><BR><BR></FONT><FONT FACE='VERDANA, ARIAL' SIZE=2>"+mens+"</FONT>");
	ventana.document.write("<FORM><INPUT TYPE='BUTTON' VALUE='Cerrar' onClick='self.close()'></FORM></BODY>");
	ventana.document.close();
}

