
function getFlash(URL,wid,hei,mode) 
{
	document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='"+wid+"' height='"+hei+"'>");
	document.write("<param name='movie' value='"+URL+"'>");
	document.write("<param name='quality' value='high'>");
	document.write("<param name='allowScriptAccess' value='sameDomain'>");
	document.write("<param name='WMODE' value='"+mode+"'>");
	document.write("<embed src='"+URL+"' wmode='"+mode+"' quality='high' pluginspage='https://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+wid+"' height='"+hei+"'></embed>");
	document.write("</object>");
}

function getMediaPlayer(src,width,height,autostart,showControls,loop){
	document.write("<OBJECT ID=\"Player\" CLASSID=\"CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6\" width=\""+width+"\" height=\""+height+"\" >");
	document.write("<PARAM name=\"autoStart\" value=\""+autostart+"\">");
	document.write("<PARAM name=\"showControls\" value=\""+showControls+"\">");
	document.write("<PARAM name=\"loop\" value=\""+loop+"\">");
	document.write("<PARAM name=\"URL\" value=\""+ src +"\">");
	document.write("</OBJECT>");
}




//ÃàÁ¦ ÆË¾÷Ã¢

function popimage(imagesrc,winwidth,winheight){
    var look='width='+winwidth+',height='+winheight+','
        popwin=window.open("","",look)
        popwin.document.open()
        popwin.document.write('<title>Image Window</title><body topmargin=0 leftmargin=0><img style=cursor:hand; onclick="self.close()" src="'+imagesrc+'"></body>')
        popwin.document.close()
}
