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


