/*
 * Denne filen inneholder en latterlig kodesnutt - som dessverre er nødvendig.
 * http://www.macromedia.com/devnet/activecontent/articles/devletter.html
 */

function skrivFlashKode(fil,width,height) {
	/*document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' ");
	document.write("codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' ");
	document.write("width='"+width+"' height='"+height+"'>\n");
	document.write("<param name='movie' value='" + fil + "' />\n");
	document.write("<param name="quality" value="high" />\n");
	document.write("<embed src='" + fil + "' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' ");
	document.write("type='application/x-shockwave-flash' width='"+width+"' height='"+height+"'></embed>");
	document.write("</object>\n");*/
	document.write("<object type='application/x-shockwave-flash' data='" + fil + "' width='"+width+"' height='"+height+"'>\n");
	document.write("<param name='movie' value='" + fil + "' />\n");
	document.write("<param name='scale' value='noscale' />\n");
	document.write("<param name='salign' value='lt' />\n");
	document.write("</object>\n");
}


function skrivFlashVideoKode(fil,width,height) {
	document.write("<embed\n");
	document.write("src='/embed/player.swf'\n");
	document.write("width='" + width + "' height='" + height + "' bgcolor='undefined'\n");
	document.write("allowscriptaccess='always' allowfullscreen='true'\n");
	document.write("flashvars='file=" + fil + "' />\n");
}