function popup(name, target, width, height) {

    if (!width) {
        width = 300;
    }
    if (!height) {
        height = 400;
    }
    if (typeof(target)!="undefined" && target.length > 0) {
        target = "#" + target
    }
    else {
        target = "";
    }

    eval("page = window.open('/home/popup_" + name + ".jsp" + target + "', 'read_more', 'dependent=true,toolbar=0,location=0,statusbar=0,scrollbars=1,menubar=0,width=" + width + ",height=" + height + "');");
    if (window.focus) {page.focus()}
	//return false;
}