function gotourl(url)
    {
    try{
       window.navigate(url);
       }
    catch(er){
         document.location=url;
         }
    }

