<!-- 

var n4 = (document.layers)? true : false; 
var e4 = (document.all)? true : false; 

// ÇØ»óµµ¿¡ ¸Â´Â Å©±â »ç¿ë 
function screen_size() 
{ 
	self.moveTo(0,0); 
	self.resizeTo(screen.availWidth,screen.availHeight); 
}

//À§Ä¡º¯°æ 
function win_size(width,height) { 
	if(window.opener) resizeTo(width,height); 
}

//ÆäÀÌÁöÀÌµ¿ 
function move(url) { 
	location.href = url; 
}

function open_win(url, w, h) {
	var win = window.open(url,'','resizable=no,scrollbars=no,status=0,width='+w+',height='+h);
	win.window.focus(); 
}

//»õÃ¢¶ç¿ì±â 
function open_win1(url, w, h, scroll) { 
	var win = window.open(url,'','width='+w+',height='+h+',top=200,left=200,status=0,scrollbars='+scroll); 
	win.window.focus(); 
}

//»õÃ¢¶ç¿ì±â 
function open_win2(url, target, w, h, scroll) { 
	var win = window.open(url,target,'width='+w+',height='+h+',top=0,left=0,scrollbars='+scroll); 
	win.window.focus(); 
}

function open_win3(url, w, h) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=no,resizable=no'
	win = window.open(url, '', winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function no_back(url) {
	window.location.replace(url);
}

function openAdmin(){
	window.open("http://www.doubleahard.co.kr");
}

// ******************************************************************************************* //
// **  ActiveX °ü·Ã IE ¼³°èº¯°æ¿¡ µû¸¥ ¼öÁ¤ 
// ++  (HTML ¼Ò½º¿¡ Embed, Object, APPLET ÅÂ±× Á÷Á¢ÀûÀÎ ¼Ò½º ±â¼ú ºÒ°¡)
// ******************************************************************************************* //

//---------------------------------------------------------------------------------------------------------
//  ÇÃ·¡½¬(swf) ÆÄÀÏ ¸µÅ© 
//  ÆÄ¶ó¹ÌÅÍ : ID, width, height, swfÆÄÀÏ¸í, wmode(none, transparent, opaque, FlashVars(ÇÃ·¡½Ã·Î ³Ñ±æ ÆÄ¶ó¹ÌÅÍ)...)
//---------------------------------------------------------------------------------------------------------


//--> 
