var popupWin
var ProdCode

function popup(title,productcode,shot)  // write corresponding content to the popup window
 {

   popupWin = window.open("", "", "width=780,height=535,scrollbars=0,dependent,resizable");
   popupWin.document.open("text/html", "replace"); 
   popupWin.document.writeln('<HTML><HEAD><TITLE>');
   popupWin.document.writeln(title);
   popupWin.document.writeln('</TITLE>');
   popupWin.document.writeln('<style type="text/css">');
   popupWin.document.writeln('a { color="#0000FF"; text-decoration: none}');
   popupWin.document.writeln('a:hover { text-decoration: underline }');
   popupWin.document.writeln('</style></HEAD><BODY><div align=center>');
   popupWin.document.write('<img src="http://www.calibresoftware.co.uk/productinfo/software/');
   popupWin.document.write(productcode);
   popupWin.document.write('scr');
   popupWin.document.write(shot);
   popupWin.document.write('.jpg">');
   popupWin.document.writeln('</BODY></HTML>');
   popupWin.document.close();  // close layout stream
   popupWin.focus();  // bring the popup window to the front
  }