function bvGotoReadReviewDestination(resortID) {
	destination = "/RCIW/RCIW_index?body=RCIW_BVReviews&i_resort_id=" + resortID;
    version = navigator.appVersion;
   // sets variable = browser version
    if(destination!="no_page")
    {
       if (version.indexOf("MSIE") >= -1)
      // checks to see if using IE
       {
          window.location.href=destination;
       }
       else
       {
          window.open(destination, target="_self");
       }   
    }
}