var myChoice, mySelection;
function CK_MenuItemRedirectPage(){
myChoice = document.myForm.myMenu.selectedIndex;
mySelection=document.myForm.myMenu.options[myChoice].value;
location=mySelection;
}

function CK_MenuItemRedirectPage2(){
myChoice = document.myForm2.myMenu2.selectedIndex;
mySelection=document.myForm2.myMenu2.options[myChoice].value;
location=mySelection;
}

