// JavaScript Document

//POPUP IMG
function displayImage(img, w, h) {
  newWindow = window.open ("","_blank","scrollbars=0,resizable=0,width="+w+",height="+h+"");
  newWindow.document.write('<html><head style="margin: 1; padding: 1;"></head>');
  newWindow.document.write('<body style="margin: 1; padding: 1;" bgcolor="white">');
  newWindow.document.write('<img src="'+img+'">');
  newWindow.document.write("</body></html>");
}

function displayImageScroll(img, w, h) {
  newWindow = window.open ("","_blank","scrollbars=1,resizable=0,width="+w+",height="+h+"");
  newWindow.document.write('<html><head style="margin: 1; padding: 1;"></head>');
  newWindow.document.write('<body style="margin: 1; padding: 1;" bgcolor="white">');
  newWindow.document.write('<img src="'+img+'">');
  newWindow.document.write("</body></html>");
}

function displayVideo(v) {
  newWindow = window.open ("","_blank","scrollbars=0,resizable=0,width=320,height=255");
  newWindow.document.write('<html><head style="margin: 1; padding: 1;"></head>');
  newWindow.document.write('<body style="margin: 1; padding: 1;" bgcolor="white" align="center">');
  newWindow.document.write('<embed width="320" height="255" src="video/'+v+'"></embed>');
  newWindow.document.write("</body></html>");
}