/* 
alt2.jsp ·¹ÀÌ¾îÃ¢ ¶ì¿ì±â
- ¸¶¿ì½ºµû¶ó ´Ù´ÏÁö ¾ÊÀ½
- ´Ý±â ¹öÆ° ÀÖÀ½
*/

var cursor = new Array();

function eventMove() {
    cursor["x"] = document.body.scrollLeft + event.clientX;
    cursor["y"] = document.body.scrollTop + event.clientY;
}

document.onclick = eventMove;


function alt( msg, _width, _height ){

	//\' \" ÀüÈ¯ ¿ø·¡ ¹®ÀÚ·Î 
	//msg = msg.replace(/$\/gi,"");
    var _style = alt_div.style;
//    var x = cursor["x"] + document.body.scrollLeft; 
 //   var y = document.body.scrollTop;

    _style.left = cursor["x"] - 70;
    _style.top = cursor["y"] + 20;

	//msg = msg + "<a href='javascript:Off()'><img src=/li/images/close.gif border=0></a>";

    if( msg != null ){
        alt_div.innerHTML = msg;
        _style.visibility = "visible";
        if( _width != null ){
            if( alt_div.offsetWidth > _width ){
                _style.width = _width;
            }
        }
        if( _height != null ){
            if( alt_div.offsetHeight > _height ){
                _style.height = _height;
            }
        }
    }else{
        _style.visibility = "hidden";
    }
}

document.write(
    "<div id=alt_div style=\"" +
    "padding:5;" +
    "border:1 solid #C0C0C0;" + // ¸»Ç³¼± Å×µÎ¸® ÄÃ·¯
    "background-color:#FFF3EE;color:#000000;font-size:12;" + // ¸»Ç³¼± Å×ÀÌºí ¹é±×¶ó¿îµåÄÃ·¯ / ÆùÆ®ÄÃ·¯ ¹× Å©±â
    "position:absolute;" +
    "visibility:hidden;" +
    "overflow:auto;" +
    "z-index:10;" +
    "width:auto;" +
    "height:auto;" +
    "filter:alpha(opacity=95);" + // Åõ¸íµµ
    "\"></div>"
);

function Off() {
	alt_div.innerHTML = "";
	alt_div.style.visibility = "hidden";
	//alt( '»ó´ãÀÌ·ÂÀ» Å¬¸¯ÇØ ÁÖ¼¼¿ä.', 400, 200);
}


function showSangdam(url) {
	document.all.fframe.src = url;
	//alert('aa');
}




