  function openWindow (doc, win, width, height, title)
  {
  winHeight = height + 28;
  winWidth = width + 20;
  var features = 'resizable=no' + 
				 ',toolbar=no'  + 
				 ',menubar=no'  + 
				 ',screenX=300'	+
				 ',left=300'	+
				 ',screenY=20'	+
				 ',top=20'      +
				 ',width=' + winWidth + 
				 ',height=' + winHeight ;
  newWin = window.open ('', win, features );
  newWin.document.writeln ('<head><title>' + title + '</title></head>');
  newWin.document.writeln ('<body bgcolor="white" leftmargin="8" topmargin="8" bottommargin="8"><table border="4" cellspacing="0" cellpadding="0" align="center"> <tr><td><a href="javascript:window.parent.close();"> <img src="' +  doc + '" width="' + width + '" height="' + height + '" hspace="0" vspace="0" border="0" alt="' + title + ' (click to close)"> </a></td></tr></table>');
  newWin.document.writeln ('</body></html>');
  }


