// JavaScript Document

//----- POPUP -----//

var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable='+0+''
win = window.open(mypage,myname,settings)
}

//----- IMAGEM TOPO -----//
adImagens = new Array ("images/foto_topo1.jpg", "images/foto_topo2.jpg", "images/foto_topo3.jpg", "images/foto_topo4.jpg", "images/foto_topo5.jpg", "images/foto_topo6.jpg", "images/foto_topo7.jpg");
var thisAd    = 0;
var imgCt     = adImagens.length;


function alternar()
{
    if (document.images)
	{
        thisAd++
        if (thisAd == imgCt)
		{
            thisAd = 0
        }

    document.adBanner.src=adImagens[thisAd]
    setTimeout("alternar()", 6 * 1000)
    
	}
}


//----- IMAGEM SHOWS -----//
adImagens1 = new Array ("images/foto_destaque1.jpg", "images/foto_destaque2.jpg", "images/foto_destaque2.jpg", "images/foto_destaque4.jpg", "images/foto_destaque5.jpg", "images/foto_destaque6.jpg", "images/foto_destaque7.jpg");
var thisAd1    = 0;
var imgCt1     = adImagens1.length;

function alternar1()
{
    if (document.images)
	{
        thisAd1++
		
        if (thisAd1 == imgCt1)
		{
            thisAd1 = 0;
        }

    document.adBanner1.src=adImagens1[thisAd1];
    setTimeout("alternar1()", 5 * 1000);
    
	}
}