<!--
/************************************                                   
   Active-X IE ¼³°èº¯°æ°ü·Ã ½ºÅ©¸³Æ®   
************************************/
 

function docwrite(str) {
	document.write(str);
}

/*
###########################################################################################################################
# 
# ÇÃ·¡½¬ °ü·Ã
# »ç¿ë¹æ¹ý
# °¢ pageÀÇ header ¿¡ ±âÀÔ.
#<script src="/online/global.js" type="text/javascript"></script>
#<script language="JavaScript" src="../view/common.js"></script>
#
# <script language="javascript"> FlashCommon( "idF1", "main_flash.swf", "370", "236" ); </script>
# <script language="javascript"> FlashCommon( "id_menu", "../view/menu.swf", "570", "74" ); </script>
###########################################################################################################################
*/
function FlashCommon( id, ObjUrl, vWidth, vHeight ) {

	var str = "";
	str  = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + vWidth + '" height="' + vHeight + ' id="' + id + '" align="middle">';
	str += '<param name="movie" value="' + ObjUrl + '">';
	str += '<param name="quality" value="high">';
	str += '<param name="wmode" value="transparent">';
	str += '<param name="bgcolor" value="#ffffff">';
	str += '<embed src="' + ObjUrl + '" quality="high" wmode="transparent" bgcolor="#ffffff" width="' + vWidth + '" height="' + vHeight + '" id="' + id + '" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>';
	str += '</object>';

	document.writeln(str);
}

/*
###########################################################################################################################
# 
# EMBED °ü·Ã
# 
# <script language="javascript"> EmbedCommon( "idM1", "movie.wmv", "320", "240" ); </script>
# 
###########################################################################################################################
*/

function EmbedCommon( id, ObjUrl, vWidth, vHeight ) {

	var str = "";
	str  = '<embed id="' + id + '" src="' + ObjUrl + '" width="' + vWidth + '" height="' + vHeight + '"  type=application/x-shockwave-flash></embed>';
	document.writeln(str);
}


-->