<!--
function createQuote()  {

				var bookingtotal = 0
				var costTotal = 0 
				var travelfee = .5
				
                            
               	var costphotography=document.priceEstimate.setting.value * (
               	(document.priceEstimate.weddingparty.value * 20 + 40) 
               	+ (document.priceEstimate.weddingfamily.value * 20) 
               	+ (document.priceEstimate.engagementhours.value * 75) 
               	+ (document.priceEstimate.formalhours.value * 90) 
                + (document.priceEstimate.ceremonyhours.value * 125) 
                + (document.priceEstimate.alternatesitehours.value * 150) 
                + (document.priceEstimate.receptionhours.value * 90)) 
                var grandtotal=costphotography + (document.priceEstimate.dvdslideshow.value * 75)
                + (document.priceEstimate.miles.value * travelfee) 
                + (document.priceEstimate.dvdslideshowmusic.value * 100) 
                + (document.priceEstimate.downloadandprint.value * 300) 
               	+ (document.priceEstimate.proof46_4x6.value * 200)
               	+ (document.priceEstimate.proof92_4x6.value * 300)
               	+ (document.priceEstimate.proofeconomy.value * 100)
               	+ (document.priceEstimate.proofmagazine.value * 250)
               	+ (document.priceEstimate.dvdimages.value * 400)
               	bookingtotal=(175)
               	costGrand=(grandtotal - bookingtotal)

			document.priceEstimate.deposit.value = bookingtotal
			document.priceEstimate.total.value = costGrand       
        	document.priceEstimate.grandtotal.value = grandtotal
       
        
		
        }		
// -->