//¹Ìµð¾î ÆÄÀÏ ÆÐÄ¡
function EP_activate(num) {
    document.write(document.getElementById("DEACTIVATED_TEXT" + num).value);
}

//***** ·Ñ¿À¹ö *****
function imgOver(param) {
	param.src = param.src.replace("_out.gif", "_over.gif");
}
function imgOut(param) {
	param.src = param.src.replace("_over.gif", "_out.gif");
}


//***** ÆË¾÷ *****
function pop(url,width,height,scroll){
	window.open(url,'_blank','width='+width+',height='+height+',scrollbars='+scroll);
}

//***** »õÃ¢À» Áß¾ÓÀ¸·Î *****
function center(){ 
var x,y; 
if (self.innerHeight) { // IE ¿Ü ¸ðµç ºê¶ó¿ìÀú 
x = (screen.width - self.innerWidth) / 2; 
y = (screen.height - self.innerHeight) / 2; 
}else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict ¸ðµå 
x = (screen.width - document.documentElement.clientWidth) / 2; 
y = (screen.height - document.documentElement.clientHeight) / 2; 
}else if (document.body) { // ´Ù¸¥ IE ºê¶ó¿ìÀú( IE < 6) 
x = (screen.width - document.body.clientWidth) / 2; 
y = (screen.height - document.body.clientHeight) / 2; 
} 
window.moveTo(x,y); 
} 


