function ShowPic(pic,wide,high)
{
    var PhotoURL = pic+".jpg";
    var ShowThis = "<html><head><title>Neal Morse</title></head><body backGround='../"+PhotoURL+"'></body></html>"
    var popup = window.open("","",config="toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+wide+",height="+high);
    if( navigator.appName.substring(0,8) == "Netscape" )
      {
    popup.location = "";
      }
    popup.document.write(ShowThis)
}
