function submitItem(product)
{
document.frmMain.amount.value=product.Price;
document.frmMain.shipping.value=product.Shipping;
document.frmMain.shipping2.value=product.Shipping;
document.frmMain.item_name.value=product.Name;
document.frmMain.os0.value=product.Description;
document.frmMain.item_number.value=product.Item_code;
document.frmMain.shopping_url.value="http://chicagoflightinstruction.com/"+product.ReturnPage;
document.frmMain.submit();
}
function getPhone()
{
	var phone;
	phone=document.frmphone.phone.value
	if (phone=='Phone number here' || phone=='' || phone=='no' || phone=='555-555-5555' || phone=='5555555555')
	{
		phone=prompt("Please enter a valid phone number");
	}
	//phone=prompt('Please enter home phone number for delivery confirmation. This information is given only to the delivery service.','555-555-5555');
	//if (phone=='555-555-5555' || '' || 'no')
	//{
	//	phone=prompt("Please enter a valid phone number");
	//}
	document.frmMain.amount.value="0";
	document.frmMain.shipping.value="0";
	document.frmMain.shipping2.value="0";
	document.frmMain.item_name.value="Phone";
	document.frmMain.os0.value="Number used by the trucking company to contact customer for delivery. Must have for delivery.";
	document.frmMain.item_number.value=phone;
	document.frmMain.submit();
}