// Share Functions


function JumpPage(selSelectObject)
{
 location.href = selSelectObject.options[selSelectObject.selectedIndex].value
 return true;
}

function GlobalFooter()
{
document.write("<p align=right><font color=#08476D face=arial size=-2>Maintained by Apotex Inc., Canada<br>")
//document.write("<a href=http://www.apotex.com/Awards.htm style=text-decoration:none>Awards&nbsp;|&nbsp;
document.write("<a href=http://www.apotex.com/LegalTerms.htm style=text-decoration:none>ŠApotex Inc. 2007</a><br>Today's Date: "+lastupdated(document.lastModified)+"<br><a href=http://www.apotex.com/Contacts.asp><img src=/new/Images/ContactUsSmall.gif border=0></a></font></p>")
}



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

}




// EOF(Shares.js)