<!-- ignore for non-javascript browsers

 function LOpenWindow(theDoc, theWidth, theHeight)
 {
   //NOTE: Local OpenWindow used here for speed. Accept browser height, width parms, but if null, then use default settings here.
   if(theWidth=="") theWidth=460;
   if(theHeight=="") theHeight=320;
   
   //NOTE: Using Server.URLEncode for the <a href.. link to this function is useless, because the browser unencodes the link string...so you must use
   //      javascript escape() function.  However, if the string has " or ' in it, it will mess
   //      up the <a href... link as well.  So, replace the " and the ' with \'\' and \' in the <a href... to this function.
   
   //NOTE: Netscape 3, 4 won't allow this inline for the href="javascript:window.open...
   theWindow=window.open(theDoc,'openwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,copyhistory=0,width='+theWidth+',height='+theHeight);
 }

// end of ignore -->

