/*---------- start here -----------*/  
 var image_src = "../icons/waiting/wait16trans.gif";
 var image1 = new Image(); 
 image1.src = image_src;    
 
 function trim(str) {      // trimming function 
             if(!str || typeof str != 'string')         
                return '';     
             return str.replace(/^[\s]+/,'').replace(/[\s]+$/,'').replace(/[\s]{2,}/,' '); 
 }
 
 function popup(url,target){
            window.open(url,target);
 }
 
  
 function disclaimer() {
        var notice  = "You must agree this clause before you surf this website\n";
            notice += "\n\nThis notice is important as the publisher of the website\n";
            notice += "is not responsible for any damage, loss due to use of this site."
        alert(notice);
     
 } 
 
 function DestroySession(){
    var path = "./tabs/logout.php";
    popup(path,'_self');

 }

/*---------- end here -----------*/
