//Verifica se é o lixo do IE
var isIE = document.all?true:false;

function showtip(current,e,text)
{	
	var elm;
	current.style.cursor = 'pointer';
	elm = window.document.getElementById("teste");
	elm.innerHTML = "<img src='_res/logomini.gif' style='float:left;margin:4px'>"+text;
	if(isIE) {        
		elm.style.top=parseInt(document.body.scrollTop+e.clientY);
        elm.style.left=parseInt(document.body.scrollLeft+e.clientX+10);
    }
    else {       
		elm.style.top=parseInt(window.pageYOffset+e.clientY);
        elm.style.left=parseInt(window.pageXOffset+e.clientX+10);
    }
elm.style.bgColor = '#333333';
elm.style.visibility = "visible";
}

function hidetip()
{        
	var elm;
	elm = window.document.getElementById("teste");
	elm.style.visibility = 'hidden';          
}

function EventoInfo(celula,evento,info,status)
{        if(status=='in')
        {       celula.bgColor='#333333';
				celula.style.cursor='pointer';	
                showtip(celula,evento,info);
        }
        else
        {       celula.bgColor='#111111';
                celula.style.cursor='default';
				hidetip();
        }
        return false;
}

var flyer;
function ShowFlyer(file,x,y)
{        rola='0';
        if (flyer) flyer.close(); //fecha a janela
        if (x>600) {x=600;rola='1';}
        if (y>500) {y=500;rola='1';}

        var strFeatures="height="+y+",width="+x+",top=10,left=10,titlebar=0,menubar=0,scrollbars="+rola+",status=0,resizable=1";
            flyer=window.open("show_flyer.php?file="+file,"",strFeatures);
}

var page;
function OpenPage(url)
{        if (page) page.close(); //fecha a janela
         var strFeatures="height=400,width=600,top=40,left=40,location=1;titlebar=1,menubar=1,scrollbars=1,status=1,resizable=1";
            page=window.open(url,"",strFeatures);
}

var window_new;
function OpenNews(id)
{        if (window_new) window_new.close(); //fecha a janela
         var strFeatures="height=300,width=400,top=10,left=10,location=0;titlebar=0,menubar=0,scrollbars=1,status=0,resizable=1";
            window_new=window.open('show_news.php?id='+id,"",strFeatures);
}

function ValidateEnquete()
{        for(i=0;i<document.enquete.op.length;i++)
         if (document.enquete.op[i].checked == true) return true;

        alert("Escolha uma das opções!");
        return false;
}

var window_breaknew;
function OpenBreaknews(id)
{        if (window_breaknew) window_breaknew.close(); //fecha a janela
         var strFeatures="height=350,width=500,top=10,left=10,location=0;titlebar=0,menubar=0,scrollbars=1,status=0,resizable=1";
	         window_breaknew=window.open('show_breaknews.php?id='+id,"",strFeatures);
}

var window_cinenews;
function OpenCinenews(id)
{        if (window_cinenews) window_cinenews.close(); //fecha a janela
         var strFeatures="height=350,width=500,top=10,left=10,location=0;titlebar=0,menubar=0,scrollbars=1,status=0,resizable=1";
	         window_cinenews=window.open('show_cinenews.php?id='+id,"",strFeatures);
}

var window_new;
function OpenAgittonews(id)
{        if (window_new) window_new.close(); //fecha a janela
         var strFeatures="height=300,width=400,top=10,left=10,location=0,titlebar=0,menubar=0,scrollbars=1,status=0,resizable=1";
            window_new=window.open('show_news.php?id='+id,"",strFeatures);
}