<!--//<![CDATA[
/// CENTRALIZE
function centraliza(w,h){
//x = parseInt((screen.width - w)/2);
x = parseInt((screen.width - w)/3.2);
y = parseInt((screen.height - h)/2);
var obj=document.getElementById('banner_botton');
obj.style.width = w;
obj.style.height = h;
obj.style.left = x;
//obj.style.bottom = y;
//obj.style.bottom = 0;
}
/// FRAME TARGET
function openFrame(url,framen){
parent.principal.frames[framen].location.href=url;
document.getElementById('banner_botton').style.visibility='hidden';
}
function openFrame2(url){
window.open(url,"_blank");
document.getElementById('banner_botton').style.visibility='hidden';
}
/// MOVEMENT
var n=0;
var idle=-120;
var max=120;
function count(){
obj_cnt=document.getElementById('banner_botton');
obj_cnt_bar=document.getElementById('bar');
n=n+1;
//obj_cnt_bar.innerHTML=n;
obj_cnt.style.bottom=idle+n;
/// added conditional
if(n==max){
obj_cnt_bar.innerHTML="x&nbsp;";
}else if(n){
setTimeout("count()", 10);
}
/// end added conditional
}
/// DOCUMENT TITLE
function titler_1(){ document.title='BAMBAL - O Maior Site de Entretenimento do Sul do ES'; }
function titler_2(){ document.title='BAMBAL - Mais de 40.000 visitantes /m�s - Anuncie J�!'; start_tittlers(); }
function start_tittlers(){
setTimeout("titler_1();", 5000);
setTimeout("titler_2();", 10000);
}
/// SCROLLER
function scrooller(){
if (navigator.appName=="Microsoft Internet Explorer"){
var sdown=document.body.scrollTop;
}else{
var sdown=window.pageYOffset;
}
document.getElementById('banner_botton').style.bottom=-sdown;
}
/// INITIALIZE ALL
window.onload=function() {
start_tittlers();
centraliza(755,120);
setTimeout("count();", 100);
};
/// START SCROLLER
window.onscroll=function(){
scrooller();
}
//]]>-->
