// JavaScript Document
function setVisibleOptions(stColor,stDisplay,idDiv){
document.getElementById(idDiv).style.display = stDisplay;
	
	var vb = document.getElementById("div"+idDiv);
	var element = vb;
		
	if(stColor=='1'){
		element.style.backgroundColor = "#E7EDDF";
		element.className = "options_on";
		}else{
		element.style.backgroundColor = "#ffffff";
		element.className = "options";
		}
}