function fullScreen(theURL) { // scrollbars=auto ½ºÅ©·ÑÀÌ ÀÚµ¿À¸·Î »ý±â´Â ¿É¼ÇÀÔ´Ï´Ù.
window.open(theURL, '', 'fullscreen=yes, scrollbars=auto');
}

function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;

if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
   
window.open(href, windowname, "width=600,height=500,scrollbars=yes");

return false;
}

// ¸¶¿ì½º¿À¸¥ÂÊ¹öÆ° ¾È³ª¿À°Ô ÇÏ±â
//function clickIE() {
//if (document.all) {
//return false;
//}
//} 
//function clickNS(e) {
//if (document.layers||(document.getElementById&&!document.all)) { 
//if (e.which==2||e.which==3) {
//return false;
//}
//}
//} 
//if (document.layers) {
//document.captureEvents(Event.MOUSEDOWN);
//document.onmousedown=clickNS;
//} 
//else{
//document.onmouseup=clickNS;
//document.oncontextmenu=clickIE;
//} 
//document.oncontextmenu=new Function("return false") 

