// JavaScript Document
function imgEnlarge(path, w, h) { 
			window.open(path, "imgEnlarge", "status=0, width=" + w + ", height=" + h + ", resizable=0, scrollbars=1, top=10, left=10");
}
function openPopup(url, target, w, h)
{
    var win = window.open(url, target, "status, resizable, scrollbars, width=" + w + ", height=" + h);
    win.focus();
    return false;
}

