	function ShowYoutube(zLink, zWidth, zHeight) {
		document.write('<object width="'+zWidth+'" height="'+zHeight+'">');
		document.write('<param name="movie" value="'+zLink+'"></param>');
		document.write('<param name="wmode" value="transparent"></param>');
		document.write('<param name="allowFullScreen" value="true"></param>');
		document.write('<param name="allowscriptaccess" value="always"></param>');
		document.write('<embed 	src="'+zLink+'"');
		document.write('type="application/x-shockwave-flash"');
		document.write('allowscriptaccess="always"');
		document.write('allowfullscreen="true"');
		document.write('wmode="transparent"');
		document.write('width="'+zWidth+'"');
		document.write('height="'+zHeight+'">');
		document.write('</embed>');
		document.write('</object>');
		
		}