// CHANGES PHOTO PRICING HERE and below in "document.write" script belowfunction selectPrice(optionSelected){	if(optionSelected=="High Res") // 1	{		document.addtocart.price.value=95.00;			}	else if(optionSelected=="Low Res")  // 2	{		document.addtocart.price.value=35.00;			}	else if(optionSelected=="5x7")  // 3	{		document.addtocart.price.value=11.00;			}	else if(optionSelected=="8X10")  // 3	{		document.addtocart.price.value=18.00;			}	else if(optionSelected=="16X20")  // 4	{		document.addtocart.price.value=45.00;			}	else if(optionSelected=="20X30")  // 5	{		document.addtocart.price.value=60.00;			}	else if(optionSelected=="Panorama")  // 6	{		document.addtocart.price.value=65.00;				document.addtocart.shipping1.value=6.00;	}}function checkSelected(){		if(document.addtocart.imagesize.selectedIndex == 0)	{		alert("You must select a size to purchase.");		document.addtocart.imagesize.focus();		return false;	}	else		return checkQty();}function checkQty(){		if(document.addtocart.qty.value == "")	{		alert("A qty of 1 will be added to your cart.");		document.addtocart.qty.value=1;	}}document.write ("<p><center>");document.write("<form name='addtocart' action='/universityphoto/basket.php?action=addtocart' method='post'>");// SET SHIPPING PRICES// VIEW AND MODIFY FILE: ecommerce_code_shipping.php TO CHANGE SHIPPING VALUES!document.write("<select name='imagesize' onChange='selectPrice(this.value)'>");document.write("<option value='N/A'>select size</option>");// SET PHOTO PRICE that shows to people here, and above at top of page for actual price added to cartdocument.write("<option value='High Res'>High Res, $95.00</option>");document.write("<option value='Low Res'>Low Res, $35.00</option>");document.write("<option value='5X7'>5x7, $11.00</option>");document.write("<option value='8X10'>8x10, $18.00</option>");document.write("<option value='16X20'>16x20, $45.00</option>");document.write("<option value='20X30'>20x30, $60.00</option>");document.write("<option value='Panorama'>Panorama (approx 10x30), $65.00</option>");// the above qty discount rules are set in the shopping cart code so if you change anything here you must contact // eemerson@wcvt.com for updates OR you need to change the actual code to reflect your pricing// which also needs to be updated in "basket_show.php"document.write("</select> <FONT size=2 face=Arial>enter qty</FONT> <input name='qty' size=5 value='1'> <input type='submit' value='add to cart' onClick='return checkSelected();'><input type='hidden' name='price' value='0.00'>");document.write("<input type='hidden' name='shipping1' value='3.75'>");document.write("</form></center></p>");
