// JavaScript Document
	
	var picText = new Array();
	picText[1] = 'Tables';
	picText[2] = 'Chairs';
	picText[3] = 'Heaters';
	picText[4] = 'Tables, Linens and Chairs';
	picText[5] = 'Tent, Tables and Chairs';
	picText[6] = 'Tables and Heaters';
	picText[7] = 'Tables and Linens';
	picText[8] = 'Heaters';
	picText[9] = 'Chairs';
	picText[10] = 'Tables and Heaters';
	picText[11] = 'Tent and Chairs';
	picText[12] = 'Chairs';
	picText[13] = 'Tables, Linens and Heaters';
	picText[14] = 'Tent';
	picText[16] = 'Canopy, Tables and Linens';
	picText[17] = 'Tables, Linens, Chairs and Heaters';
	picText[18] = '';
	picText[19] = '';
	picText[20] = 'Dance Floor Setup';
	picText[21] = 'Arch';
	
	function viewPic (img) {
		// change the text
		document.getElementById("picHolderText").innerHTML = picText[img];
		
		// change the image
		if (document.images) document.images["picHolderImg"].src = "/products/pics/"+img+".jpg";
	}
	
	function doNothing () {
	
	}
	
	function checkContactForm () {
		var alerts = "";
		
		with (document.contactForm) {
			if (!yourName.value) alerts += "Please enter your name\n";
			if (!email.value) alerts += "Please enter your email address\n";
			else if (email.value.indexOf("@")<0 || email.value.indexOf(".")<0) alerts += "Please enter a valid email address\n";
			if (!phone.value) alerts += "Please enter your phone number\n";
		}
		
		if (alerts) {
			alert(alerts);
			return false;
		}
		
		return true;
	}
	
	function viewPic (pic) {
		frames["picHolderFrame"].location.href = "/products/pics/"+pic+".jpg";
	}
