function showCloseup(imgpath) {
	document.getElementById("gallerycloseup").src = imgpath;
}

function showYoutube(vidpath) {
	var Player = 	'<object width="318" height="257"><param name="movie" value="http://www.youtube.com/v/'+ vidpath +'&hl=en&fs=1&rel=0"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/'+ vidpath +'&hl=en&fs=1&rel=0" type="application/x-shockwave-flash" allowfullscreen="true" width="318" height="257"></embed></object>';
	document.getElementById("youtubeholder").innerHTML = Player;
	document.getElementById("youtubeholder").style.display = 'Block';
}