﻿// JScript File

function show(pFileName) {
  photoWin = window.open( "", "photo", "width=400,height=400,status=no,scrollbars=yes,resizable=no,screenX=20,screenY=40,left=20,top=20");

  photoWin.document.write('<html><head><title>Hong Kong Jewellery</title></head>');	
  photoWin.document.write('<BODY BGCOLOR=#ffffff TEXT=#FFFFFF LINK=#33CCFF VLINK=#FF6666 leftmargin=0>');
  photoWin.document.write('<center>');
  photoWin.document.write('<img src="' + pFileName + '">');
  photoWin.document.write('</body></html>');
  photoWin.document.close();	
	
	if (navigator.appName.substring(0,8) == "Netscape") photoWin.focus();

}
