function popThisUp(whichFile,PuName,PuWidth,PuHeight,status) {
               screenX = (screen.availWidth/2)-(PuWidth/2);
               screenY = (screen.availHeight/2)-(PuHeight/2);
               param = "width="+PuWidth+",height="+PuHeight+",left="+screenX+",top="+screenY+",toolbar=0,location=0,directories=0,menubar=0,scrollbars=0,resizeable=1,fullscreen=0,status="+status;
               newdocument="<head><title>"+PuName+"</title></head>"
                          +"<body marginwidth=\"0\" marginheight=\"0\" leftmargin=\"0\" topmargin=\"0\">"
                          +"<img src="+whichFile+" width="+PuWidth+" height="+PuHeight+" border=\"0\"></body>";
               popupWin = window.open("about:blank", PuName, param);
               popupWin.document.write(newdocument);
               popupWin.focus();
               popupWin.document.close();
               //popupWin.moveTo((screen.availWidth/2)-(PuWidth/2),(screen.availHeight/2)-(PuHeight/2));
               //self.resizeTo(screen.availWidth,screen.availHeight)
               }
function popAddsUp(whichFile,PuName,PuWidth,PuHeight,status,index,cn) {
               screenX = (screen.availWidth/2)-(PuWidth/2);
               screenY = (screen.availHeight/2)-(PuHeight/2);
               param = "width="+PuWidth+",height="+PuHeight+",left="+screenX+",top="+screenY+",toolbar=0,location=0,directories=0,menubar=0,scrollbars=0,resizeable=1,fullscreen=0,status="+status;
               AddsWin = window.open(whichFile+"?index="+index+"&currentNav="+cn,PuName, param);
               AddsWin.focus();
               }
