// Share Functions


function JumpPage(selSelectObject)
{
 location.href = selSelectObject.options[selSelectObject.selectedIndex].value
 return true;
}

function GlobalFooter()
{
document.write("<table border=0 background=/Images/OneDot.gif cellpadding=0 cellspacing=0 width=510 height=1><tr><td></td></tr></table>")
document.write("<table border=0 cellpadding=2 width=510 cellspacing=0>")
document.write("<tr><td colspan=2 class=smaller><strong>Disclaimer:</strong> This is an international website for Ferriprox, and is intended for healthcare professionals outside the U.S. If you are a U.S resident, please click on the U.S resident’s link at the top of this page. The information in this site is not country specific and may contain information that is outside the approved indications in the country in which you are located.</td></tr>")
document.write("<tr><td nowrap><font color=#08476D size=-2>")
document.write("<a class=small href=/References.asp style=text-decoration:none>References</a>&nbsp;|&nbsp;")
document.write("<a class=small href=/ContactUs/default.asp style=text-decoration:none>Contact Us</a>&nbsp;|&nbsp;<a class=small href=/PrivacyPolicy.asp style=text-decoration:none>Privacy Policy</a>&nbsp;|&nbsp;")
document.write("<a class=small href=/LegalTerms.asp style=text-decoration:none>Terms of Use</a><br>")
document.write("</td><td align=right><img src=/images/apopharma.gif alt=ApoPharma></td></tr>")
document.write("</table>")
}

function GlobalFooterUS()
{
document.write("<table background=/Images/OneDot.gif cellpadding=0 cellspacing=0 width=500 height=1><tr><td></td></tr></table>")
document.write("<table cellpadding=2 width=500 cellspacing=0>")
document.write("<tr><td nowrap><font color=#08476D size=-2>")
document.write("<a class=small href=/us/contactus.asp style=text-decoration:none>Contact Us</a>&nbsp;|&nbsp;<a class=small href=/us/privacypolicy.asp style=text-decoration:none>Privacy Policy</a>&nbsp;|&nbsp;")
document.write("<a class=small href=/us/legalterms.asp style=text-decoration:none>Terms of Use</a><br>")
document.write("</td><td align=right><img src=/images/apopharma.gif alt=ApoPharma></td></tr>")
document.write("</table>")
}

function lastupdated(mDate)
{
 // Constructor date
 mewdate=new Date(mDate)
 mon_value=mewdate.getMonth()
 day_value=mewdate.getDate()
 year_value=mewdate.getYear()

 if (year_value < 1900)
 { 
   // To dealth with IE 4
   if (String(year_value).length == 1)
   {  cmp_year_value=year_value+2000 }

   // To dealth with Netscape 4
   if (String(year_value).length == 3)
   {  cmp_year_value=year_value+1900 } 
 }
 else
 { cmp_year_value=year_value }

 // Match 0-11 to Jan-Dec
 switch (mon_value)
 {
   case 0:
   	month="January"
  	break
   case 1:
   	month="February"
  	break
   case 2:
   	month="March"
   	break
   case 3:
   	month="April"
    	break
   case 4:
   	month="May"
   	break
   case 5:
    	month="June"
        break
   case 6:
   	month="July"
	break
   case 7:
   	month="August"
   	break
   case 8:
    	month="September"
   	break
   case 9:
   	month="October"
   	break
   case 10:
   	month="November"
   	break
   case 11:
   	month="December"
   	break
 }

 day=day_value.toString()
 year=cmp_year_value.toString()

 return month+" "+day+", "+year

}


function updateCookie(name, value)
{
   var NewDate = new Date();
   NewDate.setTime(NewDate.getTime()+(24*60*60*1000*31*5));
   document.cookie = name+"="+escape(value)+";path=/;expires="+NewDate.toGMTString();
}

// EOF(Shared.js)