function pw(userid,picorder,t) {
    var w=400;
    var h=300;
    var winl=(screen.width-w)/2;
    var wint=(screen.height-h)/2;
    var cim='view_pic.php?userid='+userid+'&picorder='+picorder;
    if (t==1) cim='view_pic.php?s=1&userid='+userid+'&picorder'+picorder;
    ujwin=window.open(cim,'','width=400, height=300, left='+winl+', top='+wint+', resizable=yes, scrollbars, menubar=no, status=no');//scrollbars=no, 
    ujwin.opener=self;
//    return false;
}
function FitPic(w,h) {
    var NS=(navigator.appName=="Netscape")?true:false;
    iWidth = (NS)?window.innerWidth:document.body.clientWidth;
    iHeight = (NS)?window.innerHeight:document.body.clientHeight;
    iWidth = w - iWidth;
    iHeight = h - iHeight;
    window.resizeBy(iWidth, iHeight);
}

