function abreImagen( imagen, nombre, alto, ancho )
{
	var x = window.open( "", nombre, "height="+alto+",width="+ancho+",menubar=no,scrollbars=no,toolbar=no,status=no,left=0,top=0,resizable=no");
	x.document.write("<html><head><title>" + nombre + "</title></head>");
	x.document.write("<body><table width='100%' height='100%'><tr><td align='center' valign='center'>");
	x.document.write("<img src='" + imagen + "' border='0'></td></tr></table></body></html>");
}

function abreTexto( texto, alto, ancho )
{
	var x = window.open( "", "PruebaDeFormato", "height=" + alto + ",width=" + ancho + ",menubar=no,scrollbars=yes,toolbar=no,status=no,left=0,top=0,resizable=no");
	x.document.write("<html><head><title>Prueba de formato</title></head>");
	x.document.write("<body><table width='100%' height='100%'><tr><td align='left' valign='top'><font face='tahoma'>" + texto + "</font></td></tr></table></body></html>");
}

function abreWeb (URL, nombre, alto, ancho)
{ 
	window.open(URL,nombre,"height="+alto+",width="+ancho+",menubar=no,scrollbars=no,toolbar=no,status=no,left=0,top=0,resizable=no");
}