
function writeHeaderFlash(type,path,size,wmode)
{
	document.write('<object type="'+type+'" data="'+path+'" '+size+'>');
	document.write('<param name="movie" value='+path+'>');
	document.write('<param name="quality" value="high">');
	document.write('<param name="menu" value="false">');
	document.write('<param name="wmode" value="'+wmode+'" />');
	document.write('<embed src="'+path+'" '+size+' quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="'+type+'" menu="false" wmode="'+wmode+'"></embed>')
	document.write('</object>');
	
	//alert(type+" - "+path+" - "+size+" - "+wmode);
}