function SelectPriceOptions(productInd)
{
	var priceOptions = GetValue(form._priceOptions, productInd);
	var selPriceOptions = GetValue(form._selPriceOptions, productInd);
	var s = GetValue(form._productDesc, productInd);
	var arr = s.split("+");
	var priceTotal = arr[3];
	
	var url = "PriceOptions.asp?options=" + priceOptions;
	url += "&selOptions=" + selPriceOptions;
	url += "&index=" + productInd;
	url += "&name=" + name;
	url += "&total=" + priceTotal;
	
	var retVal = showModalDialog(url,"","dialogWidth:420px;dialogHeight:530px;status:no;resizable:yes;center:yes;dialogLeft:200");
	window.event.returnValue = false;	// Cancel the default action for this event <a href>
	return retVal;
}