<!--
function radioButtonCheck(form) {
	for (var i=0; i < form.PriceID.length; i++) {
        if ((form.PriceID[i].checked == true) && (form.PriceID[i].id == "PriceID")) {
			form.submit();
			return true;
		}
		else if ((form.PriceID[i].checked == true) && (form.PriceID[i].id == "Store")) {
			loc = form.PriceID[i].value;
		    window.open(loc,"newWindow");
			return false;
		}
	}
}

function dropDownListCheck(form) {
	for (var i=0; i < form.dropDownList.length; i++) {
        if ((form.dropDownList.options[i].selected) && (form.dropDownList.options[i].id == "PriceID")) {
			form.submit();
			return true;
		}
		else if ((form.dropDownList.options[i].selected) && (form.dropDownList.options[i].id == "redirect")) {
			loc = form.dropDownList.options[i].value;
		    location.href=loc
			return false;
		}
		else if ((form.dropDownList.options[i].selected) && (form.dropDownList.options[i].id == "newWindow")) {
			loc = form.dropDownList.options[i].value;
		    window.open(loc,"newWindow");
			return false;
		}
	}
}
//-->
