function ShowPicture(url)
{
  NewWindow = window.open("","","width=1024,height=768,status=no,menubar=no,toolbar=no,location=no,resizable=yes,scrollbars=no");
  NewWindow.document.open()
  NewWindow.document.write("<html><title>"+url+"</title><body style=\"margin:0\">")
  NewWindow.document.write("<img src=\""+url+"\">")
  NewWindow.document.write("</body></html>")
  NewWindow.document.close()
}

function ShowPictureV(url)
{
  NewWindow = window.open("","","width=768,height=1024,status=no,menubar=no,toolbar=no,location=no,resizable=yes,scrollbars=no");
  NewWindow.document.open()
  NewWindow.document.write("<html><title>"+url+"</title><body style=\"margin:0\">")
  NewWindow.document.write("<img src=\""+url+"\">")
  NewWindow.document.write("</body></html>")
  NewWindow.document.close()
}

function ShowMap(url)
{
  NewWindow = window.open("","","width=800,height=600,status=no,menubar=no,toolbar=no,location=no,resizable=yes,scrollbars=yes");
  NewWindow.document.open()
  NewWindow.document.write("<html><title>"+url+"</title><body style=\"margin:0\">")
  NewWindow.document.write("<img src=\""+url+"\">")
  NewWindow.document.write("</body></html>")
  NewWindow.document.close()
}

function ShowScreenshot(url,name,width,height)
{
  NewWindow = window.open("","","width="+width+",height="+height+",status=no,menubar=no,toolbar=no,location=no,resizable=no");
  NewWindow.document.open()
  NewWindow.document.write("<html><title>"+name+"</title><body style=\"margin:0\">")
  NewWindow.document.write("<img src=\""+url+"\">")
  NewWindow.document.write("</body></html>")
  NewWindow.document.close()
}

function OldShowScreenshot(url,name,width,height)
{
  window.open(url,name,"width="+width+",height="+height+",status=no,menubar=no,toolbar=no,location=no,resizable=no");
}
