<!-- 

function SiteQuoteCalc(form)
{
	pages = form.pages.value;
	shoppingx = form.shopping.selectedIndex+1;
	hostingx = form.hosting.selectedIndex+1;
	blogx = form.blog.selectedIndex+1;
	cmsx = form.cms.selectedIndex+1;	

	if (hostingx == 1) {
		hostingamt = 120.00;
		}
	else if (hostingx == 2) {
		hostingamt = 240.00;
	}
	else if (hostingx == 3) {
		hostingamt = 550.00;
	}
	else if (hostingx == 4) {
		hostingamt = 0;
	}
	
	if (shoppingx == 1) {
		shoppingamt = 1200;
	}
	else if (shoppingx == 2) {
		shoppingamt = 3500;
	}
	else if (shoppingx == 3) {
		shoppingamt = 11000;
	}
	else if (shoppingx == 4) {
		shoppingamt = 0;
	}
	
	if (blogx == 1) {
		bloghrs = 5;
	}
	else if (blogx == 2) {
		bloghrs = 0;
	}
	if (cmsx == 1) {
		cmshrs = 20;
	}
	else if (cmsx == 2) {
		cmshrs = 0;
	}	
	
	designhrs = (pages * 1) + 5;
	prodhrs = pages * 1;
	
	
	myestimate = Math.round(((bloghrs + cmshrs + prodhrs + designhrs) * 100) + (shoppingamt + hostingamt));
	document.calc.myestimate.value= "$"+ myestimate;
}
//-->