function PopupPic(sPicURL) {
  window.open( "popup.php?"+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200")
  }
//image resize javascript
function DisplayImage(picURL,picWidth,picHeight,picTitle){
	newWindow=window.open(picURL,'newWin','toolbar=no,width='+picWidth+',height='+picHeight)
	newWindow.document.write('<html><head><title>'+picTitle+'<\/title><\/head><body background="'+picURL+'"><\/body><\/html>')
	newWindow.resizeBy(picWidth-newWindow.document.body.clientWidth,picHeight-newWindow.document.body.clientHeight)
	newWindow.focus()
}
