function land(ref, target)
{
lowtarget=target.toLowerCase();
if (lowtarget=="_self") {window.location=loc;}
else {if (lowtarget=="_top") {top.location=loc;}
else {if (lowtarget=="_blank") {window.open(loc);}
else {if (lowtarget=="_parent") {parent.location=loc;}
else {parent.frames[target].location=loc;};
}}}
}
function jump(menu)
{
ref=menu.choice.options[menu.choice.selectedIndex].value;
splitc=ref.lastIndexOf("*");
target="";
if (splitc!=-1)
{loc=ref.substring(0,splitc);
target=ref.substring(splitc+1,1000);}
else {loc=ref; target="_self";};
if (ref != "") {land(loc,target);}
}


function flashFix(){
  if(navigator.appVersion.indexOf("MSIE 5.5")!=-1){
    for(i=0;a=document.getElementsByTagName("object")[i];i++){
      if(a.getAttribute("type") &&
         a.getAttribute("type").indexOf("application/x-shockwave-flash")!=-1 &&
         !a.getAttribute("classid")
         ){
            a.outerHTML=a.outerHTML.slice(0,a.outerHTML.indexOf(">"))+
            " classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' "+
            "><param name='movie' value='"+
            a.getAttribute("data")+
            "' \/>"+
            a.outerHTML.slice(a.outerHTML.indexOf(">")+1,a.outerHTML.length);
          }
    }
  }
}

window.onload=function(){
flashFix();
};