Sorry, your browser doesn't support Java(tm).

 
     
   
     
   
     
   
     
       
             
       
   
     
 

[email protected]
© copyright 1999
WebMaster :
Eduardo Oliveira
Todos os direitos reservados

 

 
     

Em construção

 
     
 

Visitas a esta página

 
   
     

Free Animations 

 

 

content="This is probably the simpliest Button JavaScript. Copy 4 lines of HTML into your document and you have a button alert! The button can have different words on it and the message can also be customized." name=description>

var message="Sorry, that function is disabled." // Message for the alert box // Don't edit below! function click(e) { if (document.all) { if (event.button == 2) { alert(message);return false; } } if (document.layers) { if (e.which == 3) { alert(message); return false; } } } if (document.layers) {document.captureEvents(Event.MOUSEDOWN); } document.onmousedown=click;