function WriteSwf(name, img,wsize,hsize){
    document.write("<object id=\"" + name + "\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"" + wsize + "\" height=\"" + hsize + "\">");
    document.write("<param name=\"movie\" value=\""+img+"\">");
    document.write("<param name=\"quality\" value=\"high\">");
    document.write("<param name=\"menu\" value=\"false\">");	
     document.write("<param name=\"wmode\" value=\"opaque\">");
	 document.write("<param name=\"allowfullscreen\" value=\"true\">");
	 document.write("<embed id=\"" + name + "\" name=\"" + name + "\" src=\"" + img + "\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"" + wsize + "\" height=\"" + hsize + "\"></embed>");
	document.write("</object>");
}


function WriteSwf(name, img,wsize,hsize,opt){
	var strOpt = "";
	if(opt != null){
		strOpt = "?" + opt;
	}
	document.write("<object id=\"" + name + "\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"" + wsize + "\" height=\"" + hsize + "\">");
    document.write("<param name=\"movie\" value=\""+img+ strOpt + "\">");
    document.write("<param name=\"quality\" value=\"high\">");
    document.write("<param name=\"menu\" value=\"false\">");	
    document.write("<param name=\"wmode\" value=\"opaque\">");
	document.write("<param name=\"allowfullscreen\" value=\"true\">");

	document.write("<embed id=\"" + name + "\" name=\"" + name + "\" src=\"" + img + strOpt + "\" quality=\"high\" wmode=\"opaque\" allowfullscreen=\"true\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"" + wsize + "\" height=\"" + hsize + "\"></embed>");
	document.write("</object>");
}

function WriteMov(img,wsize,hsize){
	document.write("<OBJECT ID=\"MediaPlayer\" WIDTH="+wsize+" HEIGHT="+hsize+" ");
	document.write("CLASSID=\"CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95\"");
	document.write("STANDBY=\"Loading Windows Media Player components...\" ");
	document.write("TYPE=\"application/x-oleobject\">");
	document.write("<PARAM NAME=\"FileName\" VALUE=\""+img+"\">");
	document.write("<PARAM NAME=\"autoStart\" VALUE=\"true\">");
	document.write("<PARAM NAME=\"showControls\" VALUE=\"false\">");
	document.write("<PARAM NAME=\"menu\" VALUE=\"false\">");
	document.write("<PARAM NAME=\"wmode\" VALUE=\"opaque\">");
	document.write("<PARAM NAME=\"allowfullscreen\" VALUE=\"true\">");
	document.write("<EMBED TYPE=\"application/x-mplayer2\" SRC=\""+img+"\"");
	document.write("  autoStart=1");
	document.write("  showControls=0");
	document.write(" NAME=\"MediaPlayer\"");
	document.write(" WIDTH="+wsize+"");
	document.write(" HEIGHT="+hsize+"");
	document.write(" PLUGINSPAGE=\"http://www.microsoft.com/windows/windowsmedia/download/\">");
	document.write("</EMBED>");
	document.write("</OBJECT>");
}
