// JavaScript Document

//ADICIONA AOS FAVORITOS
function favoritos(pagina,titulo){

	// Gecko (Mozilla, Firefox, Firebird & Netscape)
	if(window.sidebar)
	    window.sidebar.addPanel(titulo,pagina,'');
	
	// Internet Explorer
	else if(window.external)
	    window.external.AddFavorite(pagina,titulo);

}
//*************************************************************************************************


//ABRE UMA POP-UP
function janela_popup(mypage, myname, w, h, scroll) {
	var winl = (screen.width - w) / 3;
    var wint = (screen.height - h) / 3;
    winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=no'
    win = window.open(mypage, myname, winprops)
    if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
//*************************************************************************************************


//ABRE UMA POP-UP MAXIMIZADA
function janela_total(endereco, nome) {		
	propriedades = ('top = 0, left = 0, height = '+(screen.height - 55)+', width = '+(screen.width - 10)+', resizable = yes, scrollbars = yes, toolbar = no, location = no, directories = no, status = yes, menubar = no, fullscreen = no')	
	window.open(endereco, nome, propriedades)	
}
//*************************************************************************************************


//ABRE UMA POP-UP PARA DOWNLOAD
function download(mypage) {
    janela_popup(mypage, 'down', 100, 100, 'no')
}
//*************************************************************************************************
