//lib for about footer 'about.js'
function getCenteredWindow(width,height)
{
    obj = new Object();
    obj.left = (screen.width-width)/2;
    obj.top = (screen.height-height)/2;
    return obj;

}

function showAboutWindow(url){
    var dlgw = 400;
    var dlgh = 400;
    var cent = getCenteredWindow(dlgw,dlgh);
    if (window.showModalDialog) {
        window.showModalDialog(url, 'aboutWindow',
            "status:no;dialogWidth:"+dlgw+"px;dialogHeight:"+(dlgh+16)+"px;center;edge:sunken;scroll=0;help=0");
    } else {
        window.open(url, 'aboutWindow',
            'height=' + dlgh + ',width=' + dlgw + ',left=' + cent.left + ',top=' + cent.top + ',toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,modal=yes');
    }
}
//end lib for about footer 'about.js'