﻿// AUMENTA E DIMINUI O TAMANHO DA FONTE
var tam = 12;
function mudaFonte(tipo)
{
    if (tipo=="mais") 
    {
        if(tam<18) tam+=2;
    } else 
    {
        if(tam>10) tam-=2;
    }
    document.getElementById('textoContainer').style.fontSize = tam+'px';    
}


// TRATANDO THUMBNAILS
function AbreFoto(foto, tamx, tamy) {
	lf = Math.floor(screen.width/2) - Math.floor(tamx/2);
	tp = Math.floor(screen.height/2) - Math.floor(tamy/2);
	w = open(foto,"Foto","resizable=no,toolbar=no,status=no,menubar=no,scrollbars=no,width=" + tamx + ",height=" + tamy + ", left = " + lf + ", top = " + tp)
	w.document.open();
	w.document.write("<html><title>Santos OffShore 2007</title>");
	w.document.write("<body bgcolor=\"#ffffff\" topmargin=\"0\" leftmargin=\"0\" rightmargin=\"0\" bottommargin=\"0\">");
	w.document.write("<img src=\""+foto+"\">");
	w.document.write("</body></html>");
	w.document.close();
}