// JavaScript Document
function CheckCodeWish(opt) {
    document.myform.action = "addtowishlist.aspx?itemid=" + opt;
    document.myform.submit();
    return true;
}

function CheckCode(opt) {
    document.myform.action = "addtocart.asp?Mode=Add&itemid=" + opt;
    document.myform.submit();
    return true;
}

function optionText(selectName) {
    var selName = selectName;
    var selTxtName = selectName + "Text";
    var OptValue = document.getElementById(selName);
    var OptTxt = document.getElementById(selTxtName);
    OptTxt.value = OptValue.options[OptValue.selectedIndex].text;
    setPrice();
    return true;
}

