function WriteEmbed(o){
	var IE = (navigator.appVersion.indexOf("MSIE")>-1)? true : false;
	var s = document.getElementById(o).value;
	var e = s.substring(s.indexOf("<embed"), (s.indexOf("</embed>")+8))
	var k = (IE) ? s : e;
	document.write(k);
}

function WriteEmbed1(o,w,h,m){
	var IE = (navigator.appVersion.indexOf("MSIE")>-1)? true : false;
	var s="";
	if (IE){
		s = "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" ";
		s += "codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\""+w+"\" height=\""+h+"\">";
		s += "<param name=\"movie\" value=\""+o+"\">";
		s += "<param name=\"quality\" value=\"high\">";
		s += "<param name=\"allowScriptAccess\" value=\"always\">";
		s += "<param name=\"wmode\" value=\""+m+"\"></object>";
	}else{
		s = "<embed src=\""+o+"\" quality=\"high\" allowScriptAccess=0\"always\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" ";
		s +="width=\""+w+"\" height=\""+h+"\" />";
	}
	document.write(s);
}
