function clickFlash() {
     theObjects = document.getElementsByTagName("object"); 
     for (var i = 0; i < theObjects.length; i++) { 
          theObjects[i].outerHTML = theObjects[i].outerHTML; 
     }
}

function popupvitrine(filename) {
     var rand = Math.random();
     var url = filename+'?rnd='+rand;
     var winw = 910;
     var winh = 610;
     var winl  = (screen.width-winw) / 2;
     var wint   = (screen.height-winh) / 2;
     winprops = 'height='+winh+',width='+winw+',top='+wint+',left='+winl+',scrollbars=NO,resizable=no'; 
     newwindow=window.open(url,'janela1',winprops);
     if (window.focus) {newwindow.focus()}
}

function popup(filename,largura,altura) {
     var rand = Math.random();
     var url = filename;
     var winw = largura;
     var winh = altura;
     var winl  = (screen.width-winw) / 2;
     var wint   = (screen.height-winh) / 2;
     winprops = 'height='+winh+',width='+winw+',top='+wint+',left='+winl+',scrollbars=yes,resizable=no'; 
     newwindow=window.open(url,'janela1',winprops);
     if (window.focus) {newwindow.focus()}
}

function popupimg(numero) {
     var rand = Math.random();
     var url = 'turismo/tur'+numero+'.htm';
     var winw = 900;
     var winh = 600;
     var winl  = (screen.width-winw) / 2;
     var wint   = (screen.height-winh) / 2;
     winprops = 'height='+winh+',width='+winw+',top='+wint+',left='+winl+',scrollbars=yes,resizable=no'; 
     newwindow=window.open(url,'janela1',winprops);
     if (window.focus) {newwindow.focus()}
}

function popupDepoimento(numero) {
     var rand = Math.random();
     var url = 'depoimentos/dep'+numero+'.htm';
     var winw = 700;
     var winh = 600;
     var winl  = (screen.width-winw) / 2;
     var wint   = (screen.height-winh) / 2;
     winprops = 'height='+winh+',width='+winw+',top='+wint+',left='+winl+',scrollbars=yes,resizable=no'; 
     newwindow=window.open(url,'janela1',winprops);
     if (window.focus) {newwindow.focus()}
}
