function VerPic(url,ancho,alto)
{
	var opciones='toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,';
	ancho=parseInt(ancho); ancho+=30; ancho=String(ancho);
	alto=parseInt(alto); alto+=30; alto=String(alto);
	Ventana=window.open(url,'',opciones+'width='+ancho+',height='+alto+',left='+((screen.width)-ancho)/2+',top='+((screen.height)-alto)/2);
        if(parseFloat(navigator.appVersion)>=4)
                Ventana.focus();
}