function openImage(image){
  var wind
  wind=window.open("../openImage.php?image=" + image,"fwin","toolbar=0,location=0,scrollbars=0,width=200,height=200,resizable=0")
  wind.focus()
}
function openURL(URL,width,height){
  var wind
  wind=window.open(URL,"fwin","toolbar=0,location=0,scrollbars=0,width="+width+",height="+height+",resizable=0")
  wind.focus()
}