function loadSwf(url,width,height)
{
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0" width="' + width + '" height="' + height + '">');
	document.writeln('<param name="movie" value="' + url + '">');
	document.writeln('<param name="play" value="true">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<param name="loop" value="true">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<embed src="' + url + '" play="true" loop="true" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" width="' + width + '" height="' + height + '"></embed>');
	document.writeln('</object>');
}


/*png 사용 자바스크립트*/
function setPng24(obj) { 
  obj.width=obj.height=1; 
  obj.className=obj.className.replace(/\bpng24\b/i,''); 
  obj.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+ obj.src +"',sizingMethod='image');" 
  obj.src='';  
  return ''; 
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
