<!--
// ÀÌ¹ÌÁö ÁÖÀ§ Á¡¼±¾ø¾Ö±â ¼Ò½º
function bluring(){ 
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); 
} 
document.onfocusin=bluring; 

// »óÅÂ¹Ù ÁÖ¼Ò °¨Ãß±â ¼Ò½º
function hidestatus(){
	window.status=''
	return true
}

//Å¸ÀÌÆ² ÁÖ¼Ò °íÁ¤
try {
 top.document.title='++ ÀÎµð°í ¼­¿ø - Ã»¼Ò³âÀ» À§ÇÑ ÀÎ¹®ÇÐ ¼­Á¡ ++'
}catch (Exception){
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus


//»õÃ¢
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// -->



// ÇÃ·¡½¬ ¹Ú½º ¾ø¾Ö±â
function flash(width,height,flash_name) {
 var flash_tag = "";
 flash_tag = '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
 flash_tag +='codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0" ';
 flash_tag +='WIDTH="'+width+'" HEIGHT="'+height+'" >';
 flash_tag +='<param name="movie" value="'+flash_name+'">';
 flash_tag +='<param name="quality" value="high">';
 flash_tag +='<param name="wmode" value="Transparent">';
 flash_tag +='<embed src="'+flash_name+'" wmode="Transparent" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" ';
 flash_tag +='type="application/x-shockwave-flash"  WIDTH="'+width+'" HEIGHT="'+height+'"></embed></object>'
 document.write(flash_tag);
}


//Áß¾Ó¿¡¼­ »õÃ¢¶ç¿ì´Â ¼Ò½º
function CenterWin(url,winname,features)
{
features = features.toLowerCase();
len = features.length;
sumchar= "";
for (i=1; i <= len; i++) // ºóÄ­ Á¦°Å
{ 
onechar = features.substr(i-1, 1);
if (onechar != " ") sumchar += onechar;
}

features = sumchar; 
sp = new Array();
sp = features.split(',', 10); // ¹è¿­¿¡ ¿É¼ÇÀ» ºÐ¸®ÇØ¼­ ÀÔ·Â
splen = sp.length; // ¹è¿­ °¹¼ö
for (i=0; i < splen; i++) // width, height °ªÀ» ±¸ÇÏ±â À§ÇÑ ºÎºÐ
{ 
if (sp[i].indexOf("width=") == 0) // width °ªÀÏ¶§ 
{ 
width = Number(sp[i].substring(6)); 
} else if (sp[i].indexOf("height=") == 0) // height °ªÀÏ¶§
{
height = Number(sp[i].substring(7)); 
}
}
sleft = (screen.width - width) / 2;
stop = (screen.height - height) / 2;
features = features + ",left=" + sleft + ",top=" + stop;
popwin = window.open(url,winname,features); 
}


function winOpen(mypage,myname,w,h,scroll,resize){
  var winl = (screen.width-w)/2;
  var wint = (screen.height-h)/2;
  var settings  ='height='+h+',';
      settings +='width='+w+',';
      settings +='top='+wint+',';
      settings +='left='+winl+',';
      settings +='scrollbars='+scroll+',';
	  settings +='status=no,';
      settings +='resizable='+resize;
  win=window.open(mypage,myname,settings);
  if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}

// -->