function updateFrame(url)
{
   parent.search.location=url;
}

function frm_onload(frmname)
{
   frmname.frameElement.height = frmname.document.body.scrollHeight+20;
} 

function popUp(URL) {
   day = new Date();
   id = day.getTime();
   eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=2,location=0,statusbar=0,menubar=0,resizable=1,width=800,height=675');");
}

function inviteFriend() {
   window.open("http://www.theBirthSurvey.com/friend/tell_a_friend.php", "tellafriend_script","scrollbars=1,statusbar=1,resizable=1,width=495,height=410");
}


function getStarImage(rating)
{
   
   rating = rating + 0.25;
   rating_img = "/national/images/spacer.gif";
   
   if (rating < 0.5 ){rating_img = "/national/images/00star.gif";}
   if (rating >= 0.5){rating_img = "/national/images/05star.gif";}
   if (rating >= 1  ){rating_img = "/national/images/1star.gif";}
   if (rating >= 1.5){rating_img = "/national/images/15star.gif";}
   if (rating >= 2  ){rating_img = "/national/images/2star.gif";}
   if (rating >= 2.5){rating_img = "/national/images/25star.gif";}
   if (rating >= 3  ){rating_img = "/national/images/3star.gif";}
   if (rating >= 3.5){rating_img = "/national/images/35star.gif";}
   if (rating >= 4  ){rating_img = "/national/images/4star.gif";}
   if (rating >= 4.5){rating_img = "/national/images/45star.gif";}
   if (rating >= 5  ){rating_img = "/national/images/5star.gif";}
   
   return rating_img;
}

function renderLocationLine(line, text)
{
   if (line.length > 0)
   {
      if (text.length > 0)
      {
         return line + "<br>" + text;
      }
      else
      {
         return line;
      }
   }
   else
   {
      return text;
   }
}

function parsePhone(number)
{
   if (number.length > 0)
   {
      return number.substr(0,3) + "-" + number.substr(3,3) + "-" + number.substr(6, 4);
   }
   else
   {
      return "";
   }
}

function setStarView()
{
   $(".ResultValue").attr('width', 115);
}

function setChartView()
{
   $(".ResultValue").attr('width', 280);
}



