/*---------------------------------------------------------------------------------------
 * booking.js
 *
 * This does the booking show and hide for Winning Sports Photography.
 * 
 * 
 *-------------------------------------------------------------------------------------*/
function ShowForm(s) {
	formshow = s.value;
	if(formshow == "team") {
		showhide("TeamPhotos", 1);
		showhide("ActionPhotos", 0);
	}
	if(formshow == "action") {
		showhide("TeamPhotos", 0);
		showhide("ActionPhotos", 1);
	}
}

function showhide(whichLayer, display) { 
	if (document.getElementById) { 
		var style2 = document.getElementById(whichLayer).style; 
		if(display == 1) {
			style2.display = "inline";
		} else {
			style2.display = "";
		}
	} 
	while(document.getElementById('status').childNodes.length != 0) {
		document.getElementById('status').removeChild(document.getElementById('status').childNodes[0]);
	}
} 