function hideShowFastvendOptions(divId)
{
	var options = document.getElementById('fastvend_options');
	if (options)
	{
		for(i=0;i<options.childNodes.length;i++)
		{
			var option = options.childNodes[i];
			if (option.id == 'fastvend_method_'+divId)
			{
				option.style.display = '';
				var label = document.getElementById('fastvend_method_'+divId+'_label_1');
				if (label)
					label.className = 'roBtnSelected';
			}	
			else
				option.style.display = 'none';
		}
	}
}
function showFastvendOption(divId)
{
	//alert();
	hideShowFastvendOptions(divId);
}
function setFastvendMethodToDefault(currentDict)
{
// 	alert('"'+currentDict+'"');
// 	if (document.getElementById("dictsSelection").value != currentDict) {
// 		alert('currentDict 2');
// 		document.getElementById("fastvend_method").value = "Method1";
// 	}
// 	else
// 		alert('currentDict 3');
}
