function refresh()
{
     var flashMovie=getFlashMovieObject("pan");
     flashMovie.reload();
}

function swapPhoto(photoSRC) {
	document.images.imgSlide.src = "assets/" + photoSRC;
}
function swapPhoto2(photoSRC) {
	document.images.imgSlide2.src = "assets/" + photoSRC;
}
function swapPhoto3(photoSRC) {
	document.images.imgSlide3.src = "assets/" + photoSRC;
}
function swapPhotoObj(photoSRC) {
	document.div.imgSlide.src = "assets/" + photoSRC;
}
function show(targetId){
	if (document.getElementById)
     {
	   target = document.getElementById(targetId);
	   
	   if(target.style.display == "none")
	   {
		   target.style.display = "block";
	   }
	   
	   else
	   {
		   target.style.display = "none";
	   }
     }
}
 
function hide(targetId){
	if (document.getElementById)
     {
	   target = document.getElementById(targetId);
	   
	   if(target.style.display == "none")
	   {
		   target.style.display = "none";
	   }
	   
	   else
	   {
		   target.style.display = "none";
	   }
     }
}
