function BigImage_View(obj) 
{
	var nWnWidth, nWnHeight;
	var strSrc, strUrl; 

    strSrc = escape(obj.src);
	
    strUrl = "/fontanastyle/common/imgpop.asp?src="+strSrc; 

    nWnWidth = (window.screen.width / 2) - (122 * 10);
    nWnHeight = (window.screen.height / 2) - (27 + 50);

    popupWn = window.open(strUrl,
                "ÀÌ¹ÌÁöº¸±â",
               "width=100, height=100, left=" + nWnWidth + ", top=" + nWnHeight + ", screenX=" + nWnWidth + ", screenY=" + nWnHeight + ", scrollbars=yes, resizable=yes");
    popupWn.focus();
}
