// JavaScript Document
//CHAMA O FLASH
function callFlash(_path,_w,_h){
 var flash = "";  
 flash = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='" + _w + "' height='" + _h + "'>";
 flash += "<param name='movie' value='" + _path + "' />";
 flash += "<param name='quality' value='high' />";
 flash += "<param name='wmode' value='transparent' />";
 flash += "<embed src='" + _path + "' quality='high' wmode='transparent' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + _w + "' height='" + _h + "'></embed>";
 flash += "</object>";  
 document.write(flash);  
}

function popup(_url,_w,_h,_left,_top) {
	window.open(_url,'', 'width='+_w+', height='+_h+', top='+_top+', left='+_left+', scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');
}
	
function newWindow(_id){
	mywindow = window.open ('../popup/popup.asp?id='+_id+'','mywindow','location=0,status=1,scrollbars=0,toolbar=0,menubar=0,width=366,height=461');
}
	
function ampliarImagem(n) {
	URL = "../zoom/zoom.asp?img="+n;
	var width = 200;
	var height = 200;
	var left = 120;
	var top = 120;
	window.open(URL,'Zoom','top='+top+', left='+left+', scrollbars=no, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=yes, fullscreen=no');
}
$(document).ready(function() {
   
    $('.banner_baixo').cycle({
        fx: 'fade',
        timeout: 8000,
        speed: 4000
    });

});

function shdv(_id, _btid1, _btid2, _mostra) {
    if (_mostra == "s") {
        document.getElementById(_id).style.display = "";
        if (_btid1 != "" && _btid2 != "") {
            document.getElementById(_btid1).style.display = "none";
            document.getElementById(_btid2).style.display = "";
        }
    } else {
        document.getElementById(_id).style.display = "none";
        if (_btid1 != "" && _btid2 != "") {
            document.getElementById(_btid1).style.display = "";
            document.getElementById(_btid2).style.display = "none";
        }
    }
};
