function gotolink(theLocation,theName,theWidth,theHeight)
  {

  OpenWindow=window.open("", "", "height="+theHeight+",width="+theWidth+",toolbar=no,menubar=no,scrollbars=auto");
  OpenWindow.document.write("<HTML>")
  OpenWindow.document.write("<HEAD>")
  OpenWindow.document.write("<TITLE>")
  OpenWindow.document.write(theName)
  OpenWindow.document.write("</TITLE>")
  OpenWindow.document.write("</HEAD>")
  OpenWindow.document.write("<BODY BGCOLOR='#ffffff' leftmargin='0' topmargin='0'>")
  OpenWindow.document.write("<CENTER>")
  OpenWindow.document.write("<img src='"+ theLocation + "'><br>")
  OpenWindow.document.write("<font face='Arial, Helvetica, sans-serif' size='2'><a href='javascript:window.close();'>Close Window</a></font>")
  OpenWindow.document.write("</CENTER>")
  OpenWindow.document.write("</BODY>")
  OpenWindow.document.write("</HTML>")
  
  OpenWindow.document.close()
  self.name="main"

  }
  
function popup(theLocation,theName,theWidth,theHeight)
  {
  OpenWindow=window.open(theLocation, theName, "height="+theHeight+",width="+theWidth+",toolbar=no,menubar=no,scrollbars=auto");
  }

