function addFavorito()
{
	//window.external.addFavorite('http://www.vitalab.com.br', 'Vitalab - Coméricio e Representações LTDA');
	var url      = "http://www.vitalab.com.br";
    var title    = "Vitalab - Comércio e Representações LTDA";
    if (window.sidebar) window.sidebar.addPanel(title, url,"");
    else if(window.opera && window.print){
        var mbm = document.createElement('a');
        mbm.setAttribute('rel','sidebar');
        mbm.setAttribute('href',url);
        mbm.setAttribute('title',title);
        mbm.click();
    }
    else if(document.all){window.external.AddFavorite(url, title);}
}

window.onload = function()
{
	var divData = document.getElementById('data');
	
	if( divData != null )
	{
		dataHoje( 'data' );
	}
}





function abre_popup(width, height, nome) {
     var top; var left;
     top = ( (screen.height/2) - (height/2) )
     left = ( (screen.width/2) - (width/2) )
     window.open('atendimento/usuario_entrar.asp',nome,'width='+width+',height='+height+',scrollbars=no,toolbar=no,location=no,status=no,menubar=no,resizable=no,left='+left+',top='+top);
   }
   
   
   
   
function relogio()
{
	var date = new Date();
	var h = date.getHours();
	var m = date.getMinutes();
	var s = date.getSeconds();
	
	if( h < 10 ) h = "0" + h;
	if( m < 10 ) m = "0" + m;	
	if( s < 10 ) s = "0" + s;
	
	document.getElementById('rel').innerHTML = h + ":" + m + ":" + s;
	
	setTimeout("relogio()", 1000);
}

mes = new Array();
mes[0] = "Janeiro";
mes[1] = "Fevereiro";
mes[2] = "Março";
mes[3] = "Abril";
mes[4] = "Maio";
mes[5] = "Junho";
mes[6] = "Julho";
mes[7] = "Agosto";
mes[8] = "Setembro";
mes[9] = "Outubro";
mes[10] = "Novembro";
mes[11] = "Dezembro";

function dataHoje( obj )
{
	h = new Date();
	
	document.getElementById( obj ).innerHTML = "Serra, " + h.getDate() + " de " + mes[h.getMonth()] + " de " + h.getFullYear();
}   