function openWin(theURL,winName,features) {
  window.open(theURL,winName,features);
}


function viewImage(p,width,height) {
  openWin("view.php?p="+p,"pic","toolbar=no,location=no,status=no,menubar=no,scrollbars=no,left=100,top=100,width="+width+",height="+height);
}