	function flashWrite(file,w,h){
		html = "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\"";
		html +="codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\"";
		html +="width='"+w+"'";
		html +="height='"+h+"'";
		html +="id='"+file+"' align='middle'>";
		html +="<param name='allowScriptAccess' value='sameDomain'>";
		html +="<param name='movie' value='"+file+"'>";
		html +="<param name='quality' value='high'>";
		html +="<param name='flashvars'>";
		html +="<param name='bgcolor' value='#ffffff'>";
		html +="<param name='wmode' value='transparent'>";
		html +="<param name='scale' value='noborder'>";
		html +="<param name='menu' value='false'>";
		html +="<embed src='"+file+"' quality='high' bgcolor='#ffffff'";
		html +="width='"+w+"' height='"+h+"' name='"+file+"'"
		html +="align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'>";
		html +="</object>";
		document.write(html);

	}
// »õÃ¢ ¿­¸®°Ô ÇÏ´Â ½ºÅ©¸³Æ®
function open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';

  newWin= window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}