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,1,"Select","Raita dressing,Ranch dressing","0","na","na",0,true);
			optString += "<br>" + BtnGrp1.toHtml();

			break;

		case "2" : 
			var BtnGrp2 = new BtnGrp("radio","opt2_1",1,1,"Select","Mild,Medium,Spicy","0","na","na",0,true);
			optString += "<br>" + BtnGrp2.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;
}
