function populateBuyId( id )
{
	if (document.getElementById( id + '_buyid' ) && document.getElementsByName( id + '_option' )) {
	
		var opts = document.getElementsByName( id + '_option' );
		var buyid = null;
		for (var i = 0; i < opts.length; i++) {
			if (opts[i].checked) {
				document.getElementById( id + '_buyid' ).value = opts[i].value;
			}
		}
		
	}
}