function goSelect(theform) {
    var familyname;

    with (theform) {
        familyname = options[selectedIndex].value;
        switch (familyname) {
            case "": 	//no url found for product
                theform.selectedIndex = 0;
                break;
            default:
                theform.selectedIndex = 0;
                window.location = currentlocation + "?family=" + familyname;
                break; 	//jump to product page
        }
    }
}

function getFile(theform) {
    var filename;

    with (theform) {
        filename =  options[selectedIndex].value;
        switch (filename) {
            case "": 	//no filename found
                theform.selectedIndex = 0;
                break;
            default:
                theform.selectedIndex = 0;
                window.location = "/collateral/media/video/" +filename;
                //window.open("/collateral/media/video/" +filename);
                break; 
					}
			}
			return false;
}
function getBannerFile(theform) {
    var filename;

    with (theform) {
        filename =  options[selectedIndex].value;
        switch (filename) {
            case "": 	//no filename found
                theform.selectedIndex = 0;
                break;
            default:
                theform.selectedIndex = 0;
                window.location = "/collateral/bannerad/" +filename;
                //window.open("/collateral/bannerad/" +filename);
                break; 
					}
			}
			return false;
}