<!--
/*********************************************************************
 *
 *  Active X °ü·Ã IE ¼³°èº¯°æÀ¸·Î....
 *
 *  @@ ÀÛ¼ºÀÏ : 2006. 03. 16.
 *  @@ ÀÛ¼ºÀÚ : dizfeel
 *
 *********************************************************************/
 
/* ÅÂ±×¸¦ ÀÔ·Â ¹Þ¾Æ¼­ Á÷Á¢ Ãâ·Â */
function docwrite(str) {
	document.write(str);
}

/****************************************************
 ÇÃ·¡½Ã Ãâ·Â ÇÔ¼ö 
 ¾ÆÀÌµð, URL, Æø, ³ôÀÌ¸¸ ÀÔ·Â¹Þ¾Æ¼­ Ãâ·Â
 »ç¿ë¹ý : 
 <script language="javascript"> FlashCommon( "idF1", "main_flash.swf", "370", "236" ); </script>
*****************************************************/
function FlashCommon( id, ObjUrl, vWidth, vHeight ) {

	var str = "";
	str  = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://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);
}

/****************************************************
 ¹Ìµð¾î Ãâ·Â ÇÔ¼ö 
 ¾ÆÀÌµð, URL, Æø, ³ôÀÌ¸¸ ÀÔ·Â¹Þ¾Æ¼­ Ãâ·Â
 »ç¿ë¹ý : 
 <script language="javascript"> MediaCommon( "idM1", "movie.wmv", "320", "240" ); </script>
*****************************************************/
function MediaCommon( 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);
}
-->