var popupWin
var ProdCode
function popup(title,productcode)  // write corresponding content to the popup window
 {

		ProdCode = productcode;

  		if (ProdCode.charAt(0) === 'n')
		{ 
		ProdCode = ProdCode.replace("n","");
		} 

   popupWin = window.open("", "", "width=300,height=400,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.mobilephoneplanet.co.uk/large/');
   popupWin.document.write(ProdCode);
   popupWin.document.write('.JPG">');
   popupWin.document.writeln('<p><font face="arial" size="-1"><a href="javascript:self.close()">Close This Window</a></font></p>');
   popupWin.document.writeln('</BODY></HTML>');
   popupWin.document.close();  // close layout stream
   popupWin.focus();  // bring the popup window to the front
  }