if (top.location != location) {
    top.location.href = document.location.href;
}
		

				
		function submitOrder()
		{  
			var submitItem = "";
			var count=-1;

			while (document.forms[++count] != null)
			{
				if ((document.forms[count].deal != null)&&(document.forms[count].deal.checked == true)) {
					submitItem = (submitItem.length)?submitItem+","+document.forms[count].item.value:document.forms[count].item.value;
				}
				
			}
			// add the camera for all orders
			submitItem = (submitItem.length)?submitItem+","+document.forms['camera'].item.value:document.forms['camera'].item.value;
			
			// redirect to the checkout page
			leaving=1;
			document.location.href="http://store.x10.com/cgi-bin/sb/order.cgi?storeid=x10merchant&dbname=products&itemnum="+submitItem+"&function=add";
		}
		
