function adjustPrice(theForm, intI, dblOldPrice, dblScrambledCost)
{
	/* alert(eval("theForm.Quantity" + String(intI) + ".value")); */
	strpwd = prompt("Enter password: ");
	if(strpwd == '100rialto')
	{
		var dblCost = (((dblScrambledCost - 13) / 22) - 17) / 100;
		eval("theForm.ManualPrice" + String(intI)).value = prompt("Cost is $" + String(dblCost) + ". Enter new price:", String(dblOldPrice));
	}
}