<!--
function openPopup(id) {
    if (document.all)
        var xMax = screen.width, yMax = screen.height;
    else
        if (document.layers)
            var xMax = window.outerWidth, yMax = window.outerHeight;
        else
            var xMax = 800, yMax=600;

    var xOffset = (xMax - 480)/2, yOffset = (yMax - 440)/2;
	var nwin = window.open("/!view/!"+id, "nwi", 'width=480,height=440,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',scrollbars,resizable');
	nwin.winblur = function () {window.close();};
	nwin.onblur = nwin.winblur;
}
//-->

