<!-- 
function newScreen(theURL) {
    var PopUp = '';
    if (PopUp.location && PopUp.closed)
    {
        PopUp.location.href = theURL;
    }
    else
    {		
        PopUp=window.open(theURL,'name', 'left=10, top=10, fullscreen=no, scrollbars=auto, resizable=yes');
        PopUp.opener.focus()
        if (PopUp.opener) PopUp.opener = self;
    }
    if (window.focus) {
        PopUp.focus()
        }
}
   
function fitWindowSize() {
		
    //this.resizeTo(500, 500);
    width = document.images[0].width + 50;
    height = document.images[0].height + 160;
    if(width=="") width=250;
    if(height=="50") height=250;
    this.resizeTo(width, height);
        	
}
	
function apriFotoGrande(nome,sorgenete) {
    //document[nome].src=sorgenete;
    document.getElementById(nome).src=sorgenete;
}
// -->

