function setCheckedValue(radioObj, newValue) {
	if(!radioObj)
		return;
	var radioLength = radioObj.length;
	if(radioLength == undefined) {
		radioObj.checked = (radioObj.value == newValue.toString());
		return;
	}
	for(var i = 0; i < radioLength; i++) {
		radioObj[i].checked = false;
		if(radioObj[i].value == newValue.toString()) {
			radioObj[i].checked = true;
		}
	}
}

function changeFrame(to) {
	var where = to;
	setCheckedValue(document.forms['cart_quantity'].elements['id[2]'], where);
	document.images['frame_TL'].src = 'images/attributes/frame'+to+'_TL.gif';
	document.images['frame_TR'].src = 'images/attributes/frame'+to+'_TR.gif';
	document.images['frame_BL'].src = 'images/attributes/frame'+to+'_BL.gif';
	document.images['frame_BR'].src = 'images/attributes/frame'+to+'_BR.gif';
	document.getElementById('frameBG_T').style.background = 'url(images/attributes/frame'+to+'_T.gif)';
	document.getElementById('frameBG_L').style.background = 'url(images/attributes/frame'+to+'_L.gif)';
	document.getElementById('frameBG_R').style.background = 'url(images/attributes/frame'+to+'_R.gif)';
	document.getElementById('frameBG_B').style.background = 'url(images/attributes/frame'+to+'_B.gif)';
}
