function goToUrl(url)
{
  //alert('url=' + url);

  url=unescape(url);
  newurl = url.replace(/\s+/gi,"+");

  //alert('newurl=' + newurl);

 if(newurl =='')
 {
         return false;
 }
       location.href = location.protocol + "//" + location.host + newurl ;
}