\n');
}
function ShowPic(picPath){
winW=screen.availwidth - 20 - 10;//Def border width = 10
winH=screen.availheight - 20 - 59;//Def border height+status bar = 59
winX = (screen.availwidth - winW) / 2 - 5;
winY = (screen.availheight - winH) / 2 - 31;
winprops = "menubar=false,scrollbars=false,status=true,toolbar=false,height="+ winH +",width=" + winW + ",top=" + winY + ",left=" + winX;
winpopup = window.open('showPic.php?height=' + winH + '&picPath=' + picPath,'pic',winprops);
}
//-->