<!--

function OpenComments (c) {
    window.open(c,
                    'comments',
                    'width=480,height=480,scrollbars=yes,status=yes');
}

function OpenTrackback (c) {
    window.open(c,
                    'trackback',
                    'width=480,height=480,scrollbars=yes,status=yes');
}

function openWin(img,wid,hei,nam,sbar,stat) {
    var wHeight = hei?hei:'400';
    var wWidth = wid?wid:'600';
    var wStatus = stat?stat:'no';
    var wScroll = sbar?sbar:'no';

    var opts = 'width=' + wWidth +
               ',height=' + wHeight +
               ',scrollbars=' + wScroll +
               ',status=' + wStatus;

    var win = window.open(img,nam,opts);

    var html = '<html><body style="border:0px; margin:0px;">' +
                    '<img onClick="window.close();" src="' + 
                    img + '"></body></html>';
    win.document.open();
    win.document.write(html);
    win.document.close();
}

-->