
                                          
                                         //Disable select-text script (IE4+, NS6+)-  
                                         function disableselect(e){ 
                                         return false 
                                         } 
                                          
                                         function reEnable(){ 
                                         return true 
                                         } 
                                          
                                         //if IE4+ 
                                         document.onselectstart=new Function ("return false") 
                                          
                                         //if NS6 
                                         if (window.sidebar){ 
                                         document.onmousedown=disableselect 
                                         document.onclick=reEnable 
                                         } 
                                     
										 
                           if (document.layers){
                           window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
                           window.onmousedown=rightclick;
                           window.onmouseup=rightclick;
                           function rightclick(e) {
                           if (e.which == 3) {
                           alert('Sorry, No Source Code - Ask Sri Kandhan Rugs for Permission!');
                           return false;
                           }
                           else {
                           return true;
                           }
                           }
                           }
                           if (document.all){
                           function click() {
                           if (event.button==2) {
                           alert('Sorry, No Source Code - Ask Sri Kandhan Rugs for Permission!')
                           }
                           if (event.button==3) {
                           alert('Sorry, kein Quelltext!!!')}
                           }
                           document.onmousedown=click
                           }
