function ViewPost(url,intWidth,intHeight)
{
    var iLeft;
    var iTop;
    
    //-- Navigator allows you knowledge of window position --//
    if(navigator.appName.indexOf("netscape") != -1)
    {
        iLeft = window.screenX;
        iTop= window.screenY;
    //-- IE doesn't, so you have to center it on the screen. --//
    }else{
        iLeft = 200;  //-- I'll screen center it later... --//
        iTop  = 100;
    }
    iLeft += 200;
    iTop  += 200;
    window.open (url,
                    'mywin',
                    'width=' + intWidth 
                    + ', height=' + intHeight 
                    + ', top=' + iTop 
                    + ', left=' + iLeft 
                    + ', screenX=' + iLeft 
                    + ', screenY=' + iTop 
                    + ', scrollbars=yes, resizable=yes'
                 );
}
