// POP UP

function popup(archivo,ancho,alto) {
	var hor;
	var ver;
	var ubix;
	var ubiy;
	ubix=ancho/2;
	ubiy=alto/2;
	hor= screen.width/2-ubix;
	ver= screen.height/2-ubiy;
	popwin=window.open("","_blank","left="+hor+",top="+ver+",toolbar=0,location=0,directories=0,status=0,menubar=no,scrollbars=yes,resizable=no,width="+ancho+",height="+alto);
	popwin.document.open();
	popwin.document.write('<html><head><title>'+archivo+'</title></head><body bgcolor=white scroll=no   topmargin=0 leftmargin=0 rightmargin=0 bottomargin=0 marginheight=0 marginwidth=0>  <div style="position: absolute; top:0px;left:0px"><a href="javascript:window.close()">  <img src="'+archivo+'" width="'+ancho+'" height="'+alto+'" border="0"></a></div></body></html>');
	popwin.document.close();
}
function popuptit(tit,archivo,ancho,alto) {
	var hor;
	var ver;
	var ubix;
	var ubiy;
	ubix=ancho/2;
	ubiy=alto/2;
	hor= screen.width/2-ubix;
	ver= screen.height/2-ubiy;
	popwin=window.open("","_blank","left="+hor+",top="+ver+",toolbar=0,location=0,directories=0,status=0,menubar=no,scrollbars=yes,resizable=no, width="+ancho+", height=800");
	popwin.document.open();
	popwin.document.write('<html><head><title>'+tit+'</title></head><body bgcolor=white scroll=yes   topmargin=0 leftmargin=0 rightmargin=0 bottomargin=0 marginheight=0 marginwidth=0>  <div style="position: absolute; top:0px;left:0px"><a href="javascript:window.close()">  <img src="'+archivo+'" width="'+ancho+'" height="'+alto+'" border="0" alt="close window"></a></div></body></html>');
	popwin.document.close();
}

function popuptext(file,h,w) {
	var h;
	var w;
	var ubix;
	var ubiy;
	ubix=h/2;
	ubiy=w/2;
	hor= screen.width/2-ubix;
	ver= screen.height/2-ubiy;
	popwin=window.open(file,"_blank","left="+hor+",top="+ver+",toolbar=0,location=0,directories=0,status=0,menubar=no,scrollbars=yes,resizable=no, width="+w+", height="+h+"");
}