title="Á¦±âµ¿¼º´ç";

function flash(url,w,h,bg,win,vars,base){
	var s=
	"<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='"+w+"' height='"+h+"' align='middle'>"+
	"<param name='allowScriptAccess' value='always' />"+
	"<param name='movie' value='"+url+"' />"+
	"<param name='wmode' value='"+win+"' />"+
	"<param name='menu' value='false' />"+
	"<param name='quality' value='high' />"+
	"<param name='FlashVars' value='"+vars+"' />"+
	"<param name='bgcolor' value='"+bg+"' />"+
	"<param name='base' value='"+base+"' />"+
	"<embed src='"+url+"' base='"+base+"' wmode='"+win+"' menu='false' quality='high' bgcolor='"+bg+"' width='"+w+"' height='"+h+"' align='middle' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />"+
	"</object>";
	document.write(s);
}

function na_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';

  cookie_str = document.cookie;
  cookie_str.toString();

  pos_start  = cookie_str.indexOf(name);
  pos_start  = cookie_str.indexOf('=', pos_start);
  pos_end    = cookie_str.indexOf(';', pos_start);
  
  if (pos_end <= 0) pos_end = cookie_str.length;
  cookie_val = cookie_str.substring(pos_start + 1, pos_end);

  if (cookie_val  == "done")
    return;

  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);
}

function stamsg(){
window.status = "";
}
setInterval("stamsg()",100)

function hidestatus() 
{ 
window.status= "";
return true ;
}

if (document.layers) 
document.captureEvents(Event.mouseover | Event.mouseout) 
document.onmouseover=hidestatus 
document.onmouseout=hidestatus

function mf(s,d,w,h,t){
        return "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" width="+w+" height="+h+" id="+d+"><param name=wmode value="+t+" /><param name=movie value="+s+" /><param name=quality value=high /><embed src="+s+" quality=high wmode="+t+" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash\" width="+w+" height="+h+"></embed></object>";
}

function documentwrite(src){
        document.write(src);
}

function setcode(target, code){
        target.innerHTML = code;
}

//embed scripts2

function mGET(arrayKey, arrayValue, Value) {
count = arrayKey.length;
for(i=0;i<count;i++) {
if(arrayKey[i]==Value) {
return arrayValue[i];
break;
}
}
}
function mEmbed() {
var key = new Array();
var value = new Array();
var contents;
var embed_type;
var error_check=0;
var i, j;
var count;
var data;
var temp;
if(mEmbed.arguments.length==1) {
contents = mEmbed.arguments[0];
} else {
for(i=0;i<mEmbed.arguments.length;i++) {
temp = mEmbed.arguments[i].replace(/"|'/g,"");
data = temp.split('=');
key[i] = data[0];
value[i] = data[1];
count = data.length;
for(j=2;j<count;j++) {
value[i] += '=' + data[j];
}
}
contents='';
srcdata = mGET(key,value,'src');
if(/.(swf)$/.test(srcdata)) {
embed_type = 1;
} else if(/.(mov|avi|wma|wmv)$/.test(srcdata)) {
embed_type = 2;
}
var classid = mGET(key,value,'classid');
var codebase = mGET(key,value,'codebase');
if(embed_type==1) {
classid = 'clsid:D27CDB6E-AE6D-11cf-96B8-444553540000';
codebase = 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0';
} else if(embed_type==2) {
classid = 'clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95';
codebase = 'http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715';
}
if(classid && codebase) {
contents += '<object';
if(classid) {
contents += ' classid="' + classid + '"';
}
if(codebase) {
contents += ' codebase="' + codebase + '"';
}
count = key.length;
for(i=0;i<count;i++) {
if(value[i]!='') {
if(key[i]!='src') {
contents += ' ' + key[i] + '="' + value[i] + '"';
}
}
}
contents += '>';
for(i=0;i<count;i++) {
if(value[i]!='') {
if(embed_type==1 && key[i]=='src') {
contents += '<param name="movie" value="' + value[i] + '" />';
} else {
contents += '<param name="' + key[i] + '" value="' + value[i] + '" />';
}
}
}
}
count = key.length;
contents += '<embed';
for(i=0;i<count;i++) {
if(value[i]!='') {
contents += ' ' + key[i] + '="' + value[i] + '"';
}
}
contents += '>';
contents += '</embed>';
if(classid && codebase) {
contents += '</object>';
}
}
document.write(contents);
}
