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...","Request Ground Beef","0","na","na",0,true);
			optString += "<br>" + BtnGrp1.toHtml();

			break;

		case "2" : 
			var BtnGrp2 = new BtnGrp("radio","opt2",1,1,"Please Choose one","Shredded Beef,Chicken Burrito","0","na","na",0,true);
			optString += "<br>" + BtnGrp2.toHtml();

			break;

		case "3" : 
			var BtnGrp3 = new BtnGrp("radio","opt3",1,1,"Please choose one","Shredded Beef,Ground Beef,Chicken Chimichanga","0","na","na",0,true);
			optString += "<br>" + BtnGrp3.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;
}
