
// »õÃ¢ ¶Ù¿ì±â //
function open_win(url, name, width, height, scrollbar, resizable){ window.open(url, name, 'width='+width+',height='+height+',scrollbars='+scrollbar+',resizable='+resizable); } 
// ¸µÅ©Å×µÎ¸® ¾ø¾Ö±â //
function bluring(){ if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); } document.onfocusin=bluring; 
// ÇÁ¸°Æ® //
var win=null; 
function print(printThis) 
{ 
win = window.open("", "PrintWindow","width=679,height=633,left=10,top=10,scrollbars=yes,resizable=yes");
self.focus(); 
win.document.open(); 
win.document.write("<html><head>"); 
win.document.write("<link href='/css/style.css'  rel='stylesheet' type='text/css'>"); 
win.document.write("</head><body>"); 
win.document.write(printThis); 
win.document.write("</body></html>"); 
win.document.close(); win.print(); win.close(); 
}
