/****************************************
Flash js¿¡¼­ »ý¼º (by ±èÇüÁØ 2006.02.08)
strFileUrl : Flash ÆÄÀÏ°æ·Î
strWidth : width
strHeight : Height
strBgColor : Bgcolor
strWMode : Åõ¸í ¿©ºÎ (window,transparent , opaque)
»ç¿ë¿¹: <script language="javaScript" type="text/javascript">MakeFlash("/fla/family.swf","678","50","","");</script>
*****************************************/
function objFlash(strValue, strFileUrl,strWidth,strHeight,strBgColor,strWMode){
	var strProto = document.location.protocol + "//";
	
	if (strBgColor == "")
		strBgColor = "#ffffff";
	
	if (strWMode == "")
		strWMode = "window";
					
	document.writeln("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"" + strProto +"download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"" + strWidth + "\" height=\"" + strHeight + "\">");
	document.writeln("<param name=\"movie\" value=\"" + strValue + "\" />");
	document.writeln("<param name=\"quality\" value=\"high\" />");	
	document.writeln("<param name=\"wmode\" value=\"" + strWMode + "\" />");
	document.writeln("<param name=\"bgColor\" value=\"" + strBgColor + "\" />");	
	document.writeln("<embed src=\"" + strFileUrl + "\" quality=\"high\" pluginspage=\"" + strProto + "www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"" + strWidth + "\"  height=\"" + strHeight + "\" />");
	document.writeln("</object>");	
}

/****************************************
»ç¿ëÀÚ parameter Ãß°¡ ½Ã
param_name  : parameter name
param_value : parameter value
*****************************************/
function objFlashParam(strValue, param_name, param_value, strFileUrl, strWidth,strHeight,strBgColor,strWMode){
	var strProto = document.location.protocol + "//";
	
	if (strBgColor == "")
		strBgColor = "#ffffff";
	
	if (strWMode == "")
		strWMode = "window";
					
	document.writeln("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"" + strProto +"download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"" + strWidth + "\" height=\"" + strHeight + "\">");
	document.writeln("<param name=\"movie\" value=\"" + strValue + "\" />");
	document.writeln("<param name=\"quality\" value=\"high\" />");	
	document.writeln("<param name=\"wmode\" value=\"" + strWMode + "\" />");
	document.writeln("<param name=\"bgColor\" value=\"" + strBgColor + "\" />");	
	document.writeln("<PARAM NAME=" + param_name + " VALUE=\"" + param_value + "\" />");
	document.writeln("<embed src=\"" + strFileUrl + "\" quality=\"high\" pluginspage=\"" + strProto + "www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"" + strWidth + "\"  height=\"" + strHeight + "\" />");
	document.writeln("</object>");	
}
