// JavaScript Document
function PS_youtube( id, width, height, fullScreen, scriptAccess ) {
	document.write ( '<object width="' + width + '" height="' + height + '">' );
	document.write ( '<param name="movie" value="http://www.youtube.com/v/' + id + '&hl=ja&fs=1" />' );
	document.write ( '<param name="allowFullScreen" value="' + fullScreen + '" />' );
	document.write ( '<param name="allowscriptaccess" value="' + scriptAccess + '" />' );
	document.write ( '<embed src="http://www.youtube.com/v/' + id + '&hl=ja&fs=1" type="application/x-shockwave-flash" allowscriptaccess="' + scriptAccess + '" allowfullscreen="' + fullScreen + '" width="' + width + '" height="' + height + '"></embed>' );
	document.write ( '</object>' );
}