function nUbbYoutube(input,md5) {
	var videoID = input;
	var params = { allowScriptAccess: "always" };
	var atts = { id: "ytapiplayer" };
	swfobject.embedSWF("http://www.youtube.com/v/" + videoID + "&enablejsapi=1&playerapiid=player1&autoplay=1",md5, "475", "295", "8", null, null, params, atts);
}

function checkImageSize(input1) {
	var input = document.getElementById(input1);
	if (input.width == '680') {
		input.style.cursor	=	'pointer';
		input.style.border	=	'1px dashed #FF0000';
		input.title			=	'Klik om de afbeelding op ware grootte te zien';
		input.onclick = function() {
			window.open(input.src);
		};
	}
}
