function goToClientUrl(action)
{        
  var host=window.location.host;
  var protocol=window.location.protocol;
  var port=window.location.port;
  window.location.href= protocol+"//"+host+"/"+action;
  return false;
}

