/*-------------------------------------------------------------
	SCRIPT: e-corporativo
	PROJETO: e-corporativo
	AUTOR: Pablo Garrido
	WWW.PABLOGP.COM - Soluções Inteligentes em Tecnologia Web
--------------------------------------------------------------*/

//HORA DO SISTEMA
function horas(){
var now = new Date();
var hours = now.getHours();
var minutes = now.getMinutes();
var seconds = now.getSeconds()
if (hours <=9)
hours="0"+hours;
if (minutes<=9)
minutes="0"+minutes;
if (seconds<=9)
seconds="0"+seconds;
var cdate="<font color=#666666 face=tahoma size=0.3>| "+hours+":"+minutes+":"+seconds+" "+"</font>" 
clock.innerHTML= cdate;
setTimeout("horas()",1000);
}
setTimeout("horas()",1000);


function abrir(URL) {
			
			  var width = ((screen.width/2));
			  var height = ((screen.height/2));
			
			  var left = 99;
			  var top = 99;
			
	 		   
			window.open(URL,'janela', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no, resizable=yes');

}

 