home *** CD-ROM | disk | FTP | other *** search
- <?XML version="1.0"?>
- <PUBLIC:COMPONENT>
- <PUBLIC:ATTACH EVENT="onmouseover" ONEVENT="mouseOverHandler()"></PUBLIC:ATTACH>
- <PUBLIC:ATTACH EVENT="onmousedown" ONEVENT="mouseDownHandler()"></PUBLIC:ATTACH>
- <PUBLIC:ATTACH EVENT="onmouseup" ONEVENT="mouseUpHandler()"></PUBLIC:ATTACH>
- <PUBLIC:ATTACH EVENT="onmouseout" ONEVENT="mouseOutHandler()"></PUBLIC:ATTACH>
- <SCRIPT>
- function mouseOverHandler(){
- if(!this.disabled && ( this.style.filter != 'none' || this.style.border != '2px outset')){
- this.style.border = "2px outset";
- this.style.filter = 'none';
- }
- }
- function mouseDownHandler(){
- if(!this.disabled)
- this.style.border = "2px inset";
- }
- function mouseUpHandler(){
- if(!this.disabled)
- this.style.border = "2px outset";
- }
- function mouseOutHandler(){
- if(!this.disabled){
- this.style.border = "2px solid"
- this.style.filter = 'gray';
- }
- }
- </SCRIPT>
- </PUBLIC:COMPONENT>
-