function OpenScreen(strScreenImage, strTitle, intWidth, intHeight)
{
  var imgScreenImage = new Image;
  imgScreenImage.src = strScreenImage;
  var strImageWidth = intWidth + 20;
  var strImageHeight = intHeight + 20;
  NewWin=window.open("","NewWin","toolbar=no,status=no,width=" + strImageWidth + ",height=" + strImageHeight);
  NewWin.document.writeln('<HTML><HEAD><TITLE>' + strTitle + '</TITLE>');
  NewWin.document.writeln('</HEAD><BODY>');
  NewWin.document.write('<IMG NAME="image" SRC="');
  //the document root ... 
  //NewWin.document.write('file://c:/Develop/Web/beck-n-call/beck-n-call_Local/');
  NewWin.document.write('http://www.beck-n-call.co.uk/');
  NewWin.document.write(strScreenImage);
  NewWin.document.write('" width=' + intWidth + ' height=' + intHeight);
  NewWin.document.write(' alt="' + strTitle);
  NewWin.document.writeln('"></BODY></HTML>');
  NewWin.document.writeln('</BODY></HTML>');

  NewWin.document.close();
  NewWin.focus();
  return false;  // prevent href link being followed
}
