// JScript 파일

function ActiveView(id){ document.write(id.text);id.id=''; }

function chang_fobj(id){ document.write(id.text);id.id=''; }

function Flash(id, url, width, height) {     
	var str;    
	str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0 " width="' + width + '" height="' + height + '" id="' + id + '" align="middle">';     
	//str += '<param name="allowScriptAccess" value="sameDomain" />';     
	str += '<param name="src" value="' + url + '" />';
	//str += '<param name="quality" value="high" />';
	//str += '<param name="bgcolor" value="#ffffff" />';     
	str += '<PARAM NAME=wmode VALUE=transparent>';    
	str += '<embed src="' + url + '" quality="high" width="' + width + '" height="' + height + '" id="'+ id +'" name="' + id + '" align="middle"  type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" />';     
	str += '</object>';       
	
	document.write(str);       
	
	//Flash의 ExternalInterface가 Form Tag내에서 오류나는 버그를 해결하는 코드     
	eval("window." + id + " = document.getElementById('" + id + "');"); 
}


function Flash(id, url, width, height, qry) {     
	var str;    
	str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0 " width="' + width + '" height="' + height + '" id="' + id + '" align="middle">';     
	//str += '<param name="allowScriptAccess" value="sameDomain" />';     
	str += '<param name="src" value="' + url + '" />';
	//str += '<param name="quality" value="high" />';
	//str += '<param name="bgcolor" value="#ffffff" />';     
	str +='<param name="FlashVars" Value="'+ qry +'">';
	str += '<PARAM NAME=wmode VALUE=transparent>';    
	str += '<embed src="' + url + '" quality="high" width="' + width + '" height="' + height + '" id="'+ id +'" name="' + id + '" align="middle"  type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" />';     
	str += '</object>';       
	
	document.write(str);       
	
	//Flash의 ExternalInterface가 Form Tag내에서 오류나는 버그를 해결하는 코드     
	eval("window." + id + " = document.getElementById('" + id + "');"); 
}
