function WriteNoOpts()
{
	var outxt = new String("");
	outxt += "<ul><li>There are no options for this item.</li>";
	outxt += "<li>If you have special instructions, please type them in the space provided below.</li>";
	outxt += "<li>...<i>Thank You!</i></li></ul>";
	return outxt;}

function GetOptionGrps()
{
	 var optString = new String("");
	switch(this.optGroup)
	{
		case "0" :
			optString += WriteNoOpts();
			break;

		case "1" : 
			var BtnGrp1 = new BtnGrp("checkbox","opt1",1,1,"Would you like to add?","Real American Cheese,Natural Swiss Cheese,Hot Pepper Jack Cheese,Cheddar Cheese,Cole Slaw,Chili,Bacon,Sauteed Mushrooms","0.50,0.50,0.50,0.50,0.65,0.65,0.65,0.65","na","na",-1,true);
			optString += "<br>" + BtnGrp1.toHtml();

			break;

		case "2" : 
			var BtnGrp2 = new BtnGrp("checkbox","opt2",1,1,"Would you like to add...?","Cole Slaw,Chili,Bacon,Sauteed Mushrooms","0.65","na","na",-1,true);
			optString += "<br>" + BtnGrp2.toHtml();

			break;

		case "3" : 
			var BtnGrp3 = new BtnGrp("checkbox","opt3",1,1,"Would you like to add?","Cole Slaw,Chili,Bacon","0.65","na","na",-1,true);
			optString += "<br>" + BtnGrp3.toHtml();

			break;

		case "4" : 
			var BtnGrp4 = new BtnGrp("checkbox","opt4",1,1,"Would you like to add?","Cole Slaw,Chili,Sauteed Mushrooms","0.65","na","na",-1,true);
			optString += "<br>" + BtnGrp4.toHtml();

			break;

		case "5" : 
			var BtnGrp5 = new BtnGrp("radio","opt5",1,1,"Please choose your soft drink.","Pepsi,Diet Pepsi,Orange Slice,Root Beer,Dr. Pepper,Diet Dr. Pepper,Sobe Lean,Raspberry Tea,Sierra Mist,Mt. Dew,Sweet Tea,Unsweet Tea,Lemonade","0","na","na",0,true);
			optString += "<br>" + BtnGrp5.toHtml();

			break;

		case "6" : 
			var BtnGrp6 = new BtnGrp("checkbox","opt6",1,1,"Would you like to...","request butter and sour cream","0","na","na",0,true);
			optString += "<br>" + BtnGrp6.toHtml();

			break;

		case "7" : 
			var BtnGrp7 = new BtnGrp("radio","opt7",1,1,"Please choose your dressing","Ranch,Fat Free Ranch,Blue Cheese,Thousand Island,Italian,Fat Free Italian,Honey Mustard,Raspberry Vinaigrette","0","na","na",1,true);
			optString += "<br>" + BtnGrp7.toHtml();

			break;

		case "8" : 
			var BtnGrp8 = new BtnGrp("checkbox","opt8",1,1,"Would you like to add?","Real American Cheese,Natural Swiss Cheese,Hot Pepper Jack Cheese,Cheddar Cheese,Cole Slaw,Chili,Bacon,Sauteed Mushrooms","0.50,0.50,0.50,0.50,0.65,0.65,0.65,0.65","na","na",-1,true);
			optString += "<br>" + BtnGrp8.toHtml();

			break;

		case "A" : 
			var BtnGrp9 = new BtnGrp("radio","optA",1,1,"Please choose your drink","Kool Aid Burst,Pepsi,Diet Pepsi,Orange Slice,Root Beer,Dr. Pepper,Diet Dr. Pepper,Sobe Lean,Raspberry Tea,Sierra Mist,Mt Dew, Sweet Tea,Unsweet Tea,Lemonade","0","na","na",0,true);
			optString += "<br>" + BtnGrp9.toHtml();

			break;

		case "B" : 
			var BtnGrp10 = new BtnGrp("checkbox","optB",1,1,"Would you like to add?","Real American Cheese,Natural Swiss Cheese,Hot Peper Jack Cheese,Cheddar Cheese","0.5","na","na",0,true);
			optString += "<br>" + BtnGrp10.toHtml();

			break;

		case "C" : 
			var BtnGrp11 = new BtnGrp("checkbox","optC",1,1,"Would you like to add?","Real American Cheese,Natural Swiss Cheese,Hot Pepper Jack Cheese,Cheddar Cheese","0.5","na","na",0,true);
			optString += "<br>" + BtnGrp11.toHtml();

			optString += "<hr width='50%' align='center'>";

			var BtnGrp12 = new BtnGrp("radio","optC",0,1,"Please choose your drink","Kool Aid Burst,Pepsi,Diet Pepsi,Orange Slice,Root Beer,Dr. Pepper,Diet Dr. Pepper,Sobe Lean,Raspberry Tea,Sierra Mist,Mt. Dew,Sweet Tea,Unsweet Tea, Lemonade","0","na","na",0,true);
			optString += "<br>" + BtnGrp12.toHtml();

			break;
		default :
			optString += "<ul><li><font color='red'>No options were found for this item....</font>";
			optString += "<ul><li>If you believe this may be in error, you may notify us by clicking ";
			optString += "the button below (<i>Thanks</i>).</li><li><input onclick='sendBugReport(undefined,\"NO OPTIONS ";
			optString += "FOUND FOR ITEM "+this.itemName+"\",\""+this.itemCode+"\")' type='button' value='Send Bug Report'></li></ul></li>";
			optString += "<li>If you have special instructions, please type them in the space provided below.</li>";
			optString += "<li>...<i>Thank You!</i></li></ul>";
			break;
	}
	return optString;
}
