// JavaScript Document
// Only changeing photos at the moment. Will use xml to add descriptions later

function changephoto(sPhoto){

	if(document.getElementById){ // make sure the browser supports getEelementById
		if(sPhoto=="Start")
			document.getElementById("TextDetail").innerHTML = " <img src='' id='PhotoHere' alt='Photo'/> -- Please Click on the pictures to your left, to see the larger pictures.<p/>If you cannot see the pictures after clicking you need to adjust your browser settings to allow javascript.";
		else
		  	document.getElementById("TextDetail").innerHTML = " <img src='images/"+sPhoto+"' id='PhotoHere' alt='Photo'/>.";
	}
	else{
		alert("Sorry! This Browser is not able to display the details. Please Update your Browser");
	}

}
