<!-- Zoom
function zoomTXT(idDIV,NomeClasseZOOM) {
	document.getElementById(idDIV).className = NomeClasseZOOM;
}
// Zoom-->
<!-- popup2
function PopUp(pagina,largura,altura,invisivel){
var direita=(screen.width) ? ((screen.width-largura)/2) : 0;
var topo=(screen.height) ? ((screen.height-altura)/2) : 0;
var Open=window.open(pagina,"_blank","top="+topo+",left="+direita+",height="+altura+",width="+largura);
if(invisivel==true){ Open.blur(); window.focus(); }
}
// -->

<!-- hora
var timerID = null;
var timerRunning = false;
function startclock () 
{
stopclock();
time();
}
function stopclock ()
{
if(timerRunning)
clearTimeout(timerID);
timerRunning = false;
}
function time()
{
var now = new Date();
var ampm = (now.getHours() >= 12) ? " PM" : " AM"
var hours = now.getHours();
hours = ((hours > 12) ? hours - 12 : hours);
var minutes = ((now.getMinutes() < 10) ? ":0" : ":") + now.getMinutes();
var seconds = ((now.getSeconds() < 10) ? ":0" : ":") + now.getSeconds();
var Time=(hours + minutes + seconds + " " + ampm );
window.status=Time;
timerID = setTimeout("time()",1000);
timerRunning = true;
}
function clearStatus()
{
if(timerRunning)
clearTimeout(timerID);
timerRunning = false;
window.status="";   
}
//hora-->
<!-- no code
if (window.Event) 
document.captureEvents (Event.MOUSEUP); 
function nocontextmenu() 
{ 
event.cancelBubble = true 
event.returnValue = false; 
return false; 
} 
function norightclick(e) 
{ 
if (window.Event) 
{ 
if (e.which == 2 || e.which == 3) 
return false; 
} 
else 
if (event.button == 2 || event.button == 3) 
{ 
event.cancelBubble = true 
event.returnValue = false; 
return false; 
} 
} 
if (document.layers) { 
document.captureEvents(Event.MOUSEDOWN); 
} 
document.oncontextmenu = nocontextmenu; 
document.onmousedown = norightclick; 
document.onmouseup = norightclick; 

function disableselect (e) { 
return flase 
} 
function reEnable(){ 
return true 
} 
document.onselectstart=new Function ("return false") 
if (window.sidebar){ 
document.onmousedown=disableselect 
document.onclick=reEnable 
} 
//-->
<!--
function Apaga() 
{ 
form1.nome.value = "" 
return false 
} 
//-->
<!--
function Apaga2() 
{ 
form1.email.value = ""
return false 
} 
//-->
<!--
function Apaga3() 
{ 
form1.desc.value = "" 
return false 
} 
//-->
