<!-- hide from JavaScript-challenged browsers
if (window != window.top)
  top.location.href = location.href;
function open1(iname,icap,wsize,hsize) {
  var bldArg = 'width=' + wsize + ',height=' + hsize + ',left=350,top=200,screenX=10,screenY=10';
  bldArg = bldArg + ',channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0';
 if(!(iname=="")) {
  popupWin=window.open('','',bldArg);
  if (!popupWin.opener) { popupWin.opener = self;}
  popupWin.document.open();
  popupWin.document.writeln("<head>");
  popupWin.document.writeln("<title>" + icap + "</title>");
  popupWin.document.writeln("<SCRIPT language='JavaScript'>");
  popupWin.document.writeln("if (window.focus) {");
  popupWin.document.writeln(" self.focus();");
  popupWin.document.writeln("}");
  popupWin.document.writeln("function killWindow() {");
  popupWin.document.writeln("  killWin = window.close();");
  popupWin.document.writeln("}");
  popupWin.document.writeln("</SCRIPT>");
  popupWin.document.writeln("</head>");
  popupWin.document.writeln("<body  bgcolor='#ffffff' text='black' marginheight=0 marginwidth=0 topmargin=0 leftmargin=0>");
  popupWin.document.writeln("<center><br><br>");
  popupWin.document.writeln("<font size=3>" + iname + "</font> <br><br>");
  popupWin.document.writeln("<a href='' onClick='killWindow();'>Close</a>");
  popupWin.document.writeln("</center></body></html>");
  popupWin.document.close();
 } else {
  popupWin=window.open('notfound.html','',bldArg);
  if (!popupWin.opener) { popupWin.opener = self;}
 }
}
// done hiding -->