function swfView(width, height, url){
	document.write("<object classid='clsid:D27CDB6E-AE6D-11CF-96B8-444553540000' ");
	document.write("		codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' ");
	document.write("		width='"+width+"' height='"+height+"' align='middle'>");
	document.write("	<param name='allowScriptAccess' value='always' /> ");
	document.write("	<param name='movie'				value='"+url+"' /> ");
	document.write("	<param name='quality'			value='high' /> ");
	document.write("	<param name='wmode'				value='transparent'> ");
	document.write("	<embed src='"+url+"' quality='high' width='"+width+"' height='"+height+"' align='middle' ");
	document.write("		allowScriptAccess='sameDomain' type='application/x-shockwave-flash' ");
	document.write("		pluginspage='http://www.macromedia.com/go/getflashplayer' />");
	document.write("</object>");
}

function flash(path, width, height, name){
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="'+width+'" height="'+height+'" codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" id="'+name+'">'
	+'<param name="movie" value="'+path+'">'
	+'<param name="quality" value="high">'
	+'<param name="wmode" value="transparent">'
	+'<param name="allowScriptAccess" value="always">'
	+'<embed src="'+path+'" quality="high" wmode="transparent" pluginspage="https://www.macromedia.com/go/getflashplayer" width="'+width+'" height="'+height+'" type="application/x-shockwave-flash" showLiveConnect="true" name="'+name+'" allowScriptAccess="always"></embed>'
	+'</object>');
}

function swfGame1(width, height, url){
	document.write("<object classid='clsid:166B1BCA-3F9C-11CF-8075-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/director/sw-intl.cab#version=8,5,0,0' ID=game_muzom width='"+width+"' height='"+height+"'>");
	document.write("<param name=src value='"+url+"'>");
	document.write("<param name=swRemote value='swSaveEnabled='true' swVolume='true' swRestart='true' swPausePlay='true' swFastForward='true' swcontextmenu='0' '>");
	document.write("<param name=swStretchStyle value=none>");
	document.write("<PARAM NAME=bgColor VALUE=#FFFFFF> ");
	document.write("<embed src='"+url+"' bgColor=#FFFFFF  width='"+width+"' height='"+height+"' swRemote='swSaveEnabled='true' swVolume='true' swRestart='true' swPausePlay='true' swFastForward='true' swcontextmenu='0' ' swStretchStyle=none type='application/x-director' pluginspage='http://www.macromedia.com/shockwave/download/'></embed>");
	document.write("</object>");
}

function flash2(file,width,height,bgcolor,quality,name,align, wmode){
        if (!align) align = "lt";
		if (!wmode) wmode = "transparent";
        document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'" id="'+name+'">');  //ÇÃ·¡½¬ÇÃ·¹ÀÌ¾î ¹öÀüÀÌ ÀÌÀü¹öÀüÀÏ°æ¿ì ¹öÀü 8À» º¯°æ
        document.write('<param name="movie" value="'+file+'" />');
        document.write('<param name="quality" value="'+quality+'" />');
     document.write('<param name="wmode" value="'+wmode+'" />');  //Åõ¸íÇÃ·¡½¬°¡ ¾Æ´Ò°æ¿ì ÀÌ ¶óÀÎÀ» »èÁ¦
        document.write('<param name="bgcolor" value="'+bgcolor+'" />');
        document.write('<param name="salign" value="'+align+'" />');
            document.write('<param name="scale" value="noscale" />');
            document.write('<param name="menu" value="false" />');
            document.write('<embed src="'+file+'" quality="'+quality+'" wmode="'+wmode+'" bgcolor="'+bgcolor+'" width="'+width+'" height="'+height+'" name="'+name+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
        document.write('</object>')
}

function showTopFlash( src, width, height, mainpage, subpage ) {
	document.write( "<object id='TopFlash' classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"+width+"' height='"+height+"'>" );
	document.write( "<param name='allowScriptAccess' value='always'>" );
	document.write( "<param name='movie' value='"+src+"'>" );
	document.write( "<param name='quality' value='high'>" );
	document.write( "<param name='FlashVars' value='mainpage=" +mainpage+ "&subpage="+subpage+"' />");
	document.write( "<param name='bgcolor' value='#ffffff'>" );
	document.write( "<param name='wmode' value='transparent'>" );
	document.write( "<embed src='"+src+"' quality='high' bgcolor='#ffffff' wmode='transparent' width='"+width+"' height='"+height+"' allowScriptAccess='always' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'>" );
	document.write( "</object>" );
}

