<!--



function keydown(){ 
          if(event.keyCode==122 || event.keyCode==116  ||event.altKey==true || event.altLeft==true){
                 event.keyCode=0;
                 event.cancelBubble = true;
                 event.returnValue = false;
         
         }        
  } 
 document.onkeydown=keydown; 



//####################################     Font Size   #####################################

var fontSize = 11;
var lineHeight = 20;
function fontPlus() {
	if (fontSize < 17) {
		fontSize = fontSize + 2;
		setFaceSize();
	}
}

function fontMinus() {
	if (fontSize >= 11) {
		fontSize = fontSize - 2;
		setFaceSize();
	}
}

function setFaceSize() {
	lineHeight = fontSize+Math.round(1.1*fontSize);

	obj = document.getElementById("font_hb");
	obj.style.fontSize = fontSize+"pt";
	obj.style.lineHeight = lineHeight+"px"
}
function fullscreen(ul) {
var new_window;
var client_window_height=screen.height-60;
var client_window_width=screen.width-200;
var client_window_Features;

client_window_Features = "height"+client_window_height+",width="+client_window_width+",top=0,left=0"

new_window=window.open(ul,'window',client_window_Features, "");
new_window.focus();
}




// ################################################################################################### //


function print_article(sname,imgsrc,newsid) {

 window.open("/print/article_print.asp?id="+newsid, "print", "width=640, height=720,toolbar=no,menubar=no,scrollbars=yes");
}


function mail_article(newsid,atitle) {
 window.open("/mail/mail.asp?newsid="+newsid+"&title="+atitle, "print", "width=550, height=630,toolbar=no,menubar=no,scrollbars=yes");
}


function pdf(pdfURL) {
  window.open(pdfURL, "pdf", "width=1024, height=768,toolbar=no,menubar=no,scrollbars=yes,resizable=yes");
}

function pdfNo(pdfURL) {
 document.location.href='/member/login.asp?url='+ pdfURL; 
}



 

// ¹®ÀÚ±â»ç º¸³»±â 
function sms_article(mcode,newsid) {
// window.open("http://ec.512.co.kr/web/link.jsp?mcode="+mcode+"&nid=" + newsid , "print", "width=710, height=690,toolbar=no,menubar=no,scrollbars=no");

 window.open("http://www.m-kok.com/w2p/mkok.jsp?mcode="+mcode+"&nid=" + newsid , "print", "width=900, height=730,toolbar=no,menubar=no,scrollbars=no");

}

// ÀÌº¥Æ®ÆË¾÷
function event_article(newsid,atitle) {
 window.open("/event/2009/04/e-mail.asp?newsid="+newsid+"&title="+atitle, "print", "width=550, height=630,toolbar=no,menubar=no,scrollbars=yes");
}


// ################################################################################################### //
/*
function m_false()
{
//alert("ÁË¼ÛÇÕ´Ï´Ù. ¸¶¿ì½º ¿À¸¥ÂÊ ¹öÆ°À» »ç¿ëÇÏ½Ç ¼ö ¾ø½À´Ï´Ù.");
event.cancelBubble = true;
event.returnValue = false;
return false;
}
document.oncontextmenu=m_false;
*/
-->