function changeEmbed(id, src) {
	var e = document.getElementById(id);
	e.src = src;
}
function changeEmbedURL(id, url) {
	var e = document.getElementById(id);
	e.value = url;
}
function switchEmbed(id) {
	changeEmbed('embed-image', '/images/embed_code.gif');
	changeEmbedURL('embed-url', 
	'<object width="400" height="303">' +
	'<param name="movie" value="http://gamestudio.hetklokhuis.nl/game/MovieLoader.swf">' +
	'<param name="flashvars" value="lang=nl&movie=GamePlayer&doc_id=' + id + '">' +
	'<param name="base" value="http://gamestudio.hetklokhuis.nl/game/">' +
	'<embed src="http://gamestudio.hetklokhuis.nl/game/MovieLoader.swf" width="400" height="303" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" flashvars="lang=nl&movie=GamePlayer&doc_id=' + id + '" base="http://gamestudio.hetklokhuis.nl/game/">' +
	'</embed>' +
	'</object>');
}
function switchLink(id) {
	changeEmbed('embed-image', '/images/link_code.gif');
	changeEmbedURL('embed-url',
	'http://gamestudio.hetklokhuis.nl/player/home/?ID=' + id);
}
