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("radio","opt1",1,1,"Would you like this with?","Chicken,Shrimp","0","na","na",0,true);
			optString += "<br>" + BtnGrp1.toHtml();

			break;

		case "2" : 
			var BtnGrp2 = new BtnGrp("radio","opt2",1,1,"How SPICY would you like this?","MILD,MEDIUM,EXTRA HOT,SUPER HOT,EXTREMELY HOT","0","na","na",0,true);
			optString += "<br>" + BtnGrp2.toHtml();

			break;

		case "3" : 
			var BtnGrp3 = new BtnGrp("radio","opt3",1,1,"Please Choose your Sauce","Basil Sauce,3-Flavored Sauce","0","na","na",0,true);
			optString += "<br>" + BtnGrp3.toHtml();

			optString += "<hr width='50%' align='center'>";

			var BtnGrp4 = new BtnGrp("radio","opt3_1",0,1,"How SPICY would you like this?","MILD,MEDIUM,EXTRA HOT,SUPER HOT,EXTREMELY HOT","0","na","na",0,true);
			optString += "<br>" + BtnGrp4.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;
}
