
//¾ÆÀÌÇÁ·¹ÀÓ ÀÚµ¿ »çÀÌÁî º¯°æ ¹× ½½¶óÀÌµù ¸Þ´º
navDOM = window.innerHeight;

function setVals() {
barW = 0;
barH = 0;
if (navDOM) {
if (document.height > innerHeight) barW = 20;
} else {
innerHeight = document.body.clientHeight;
}
posY = ((innerHeight - 400)-barH);
}

function slide() {
setVals();
window.onresize=setVals;
document.all.slide.style.top = posY + (navDOM?pageYOffset:document.body.scrollTop);
}

function paperInit() { 
	reSize(); 
} 
function reSize(name){
 var oBody = document.frames[name].document.body;
 var oFrame = document.all[name];

 oFrame.style.height = oBody.scrollHeight + (oBody.offsetHeight-oBody.clientHeight);

 if(oFrame.style.height == '0px') {
  oFrame.style.height = "200px";
  window.status = 'iframe Å©±â º¯°æ ½ÇÆÐ';
 }

document.body.scrollTop=0;


}
function goTop(){
document.body.scrollTop=0;
}

//FAQ 
function faq_open(obj){
document.all[obj].style.display= '';
}

function faq_close(obj){
document.all[obj].style.display = 'none';
}



function bluring(){
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus();
}
document.onfocusin=bluring;
