function selectJump( s ){
	if(s[s.selectedIndex].value != ''){
		var location = s[s.selectedIndex].value;
		s.selectedIndex = 0;
		window.location = location;
	} else {
		return false;
	}
}

function toggleDiv(divName) {
    thisDiv = document.getElementById(divName);
    if (thisDiv) {
        if (thisDiv.style.display == "none") {
            thisDiv.style.display = "block";
        }
        else {
            thisDiv.style.display = "none";
        }
    }
    else {
        alert("Error: Could not locate div with id: " + divName);
    }
}

function offButton() {
	if (document.forms.add_cart_form.sku_id.value == "")
	{
		document.forms.add_cart_form.add_cart_button.disabled=true;
		document.forms.add_cart_form.add_cart_button.className="disabled";
	}
	else
	{
		document.forms.add_cart_form.add_cart_button.disabled=false;
		document.forms.add_cart_form.add_cart_button.className="add";
	}
}