
// janela popu geral
function popUp(url, xjan, yjan) {
		
	day = new Date();
	id = day.getTime();
	l = (screen.availWidth-10 - xjan) / 2;
	t = (screen.availHeight-20 - yjan) / 2;
	//eval("page" + id + " = window.open(url, \'" + id + "\', \',channelmode=1,fullscreen=1,toolbar=0,scrollbars=1,left='+l+',top='+t+',location=0,statusbar=0,menubar=0,resizable=0,width='+xjan+',height='+yjan+'\');"); 
	eval("page" + id + " = window.open(url, '_blank', 'top="+t+",left="+l+",width="+xjan+",height="+yjan+"');"); 
	  
}


// adicionar aos favoritos
function addBookmark(title,url) {
		if (window.sidebar) {
			window.sidebar.addPanel(title, url,"");
		} else if( document.all ) {
			window.external.AddFavorite( url, title);
		} else if( window.opera && window.print ) {
			alert("Press Ctrl + T - Carregue em Ctrl + T");
			<!-- return true; -->
		}
}