// function for drop-down selector
function landOurSites(refOurSites, targetOurSites)
{
lowtargetOurSites=targetOurSites.toLowerCase();
if (lowtargetOurSites=="_self") {window.location=loc;}
else {if (lowtargetOurSites=="_top") {top.location=loc;}
else {if (lowtargetOurSites=="_blank") {window.open(loc);}
else {if (lowtargetOurSites=="_parent") {parent.location=loc;}
else {parent.frames[target].location=loc;};
}}}
}
function jumpOurSites(menuOurSites)
{
refOurSites=menuOurSites.choiceOurSites.options[menuOurSites.choiceOurSites.selectedIndex].value;
splitc=refOurSites.lastIndexOf("*");
target="";
if (splitc!=-1)
{loc=refOurSites.substring(0,splitc);
target=refOurSites.substring(splitc+1,1000);}
else {loc=refOurSites; target="_blank";};
if (refOurSites != "") {landOurSites(loc,target);}
}