/* NOTE: the functions were all rewritten to write only one
line of text to the document, but Mozilla 1.1 could not interpret
them, while Netscape 4.75 could. The modified version is 
JavaFunctionsTEXT.js */


function IncludeGentleReminder() {
document.writeln('<p class="ahem">');
document.writeln('<big>');
document.writeln('Our Web site was rewritten to conform with current Web');
document.writeln('standards (XHTML 1.0 Strict). This includes the use of');
document.writeln('Cascading Style Sheets and other mark-up. If this text');
document.writeln('appears in your screen, either your browser does NOT fully support');
document.writeln('<a href="http://www.w3.org/Style/">Cascading Style Sheets</a>, or');
document.writeln('your browser is interpreting the paths to the CSS code or JavaScript incorrectly.');
document.writeln('You can still look at the content of this Web page, but');
document.writeln('most likely it is not in its intended layout, which can');
document.writeln('only be done if you');
document.writeln('<a href="http://www.webstandards.org/upgrade/">replace</a> ');
document.writeln('your browser with one that supports web standards.');
document.writeln('</big>');
document.writeln('</p>');
}


function IncludeHeader() {
document.writeln('<div id="UCLAheader">');
document.writeln('     <map id="RLSlabHeader"');
document.writeln('          name="RLSlabHeader">');
document.writeln('          <area shape="rect"');
document.writeln('     	        coords="1 1 175 72"');
document.writeln('     	        href="http://www.ucla.edu/"');
document.writeln('     	        alt="UCLA Web Page"');
document.writeln('     	        title="Click to go to UCLA\'s Web Page"');
document.writeln('          />');
document.writeln('          <area shape="rect"'); 
document.writeln('     	        coords="175 1 520 72"');
document.writeln('     	        href="http://www.physics.ucla.edu/plasma-exp/"');
document.writeln('     	        alt="Basic Plasma Physics Lab Web Page"');
document.writeln('     	        title="Click to go to Lab\'s Home Page"');
document.writeln('         />');
document.writeln('         <area shape="rect"');
document.writeln('     	        coords="520 1 617 72"');
document.writeln('     	        href="device/"');
document.writeln('     	        alt="Devices in Basic Plasma Physics Lab Web Page"');
document.writeln('     	        title="Click to go to the Experimental Device Page"');
document.writeln('         />');
document.writeln('     </map>');
document.writeln('	   <img src="LabLogo.jpg"');
document.writeln('	        longdesc="UCLA Basic Plasma Physics Research Lab logo"');
document.writeln('	        alt="UCLA Basic Plasma Physics Research Lab logo"');
document.writeln('	        width="617px"');
document.writeln('	        height="72px"');
document.writeln('	        usemap="#RLSlabHeader"');
document.writeln('	   />');
document.writeln('</div>');
}


function openPrinterFriendly() {
    WindowProps =  'toolbar=0, ';
    WindowProps += 'location=0, ';
    WindowProps += 'directories=0, ';
    WindowProps += 'scrollbars=1, ';
    WindowProps += 'status=0, ';
    WindowProps += 'menubar=0, ';
    WindowProps += 'resizable=1, ';
    WindowProps += 'width=420px, ';
    WindowProps += 'height=400px';
    open("WhyPrinterFriendly.html", "PrinterFriendly", WindowProps);
}

function openImageWindow(URL, baseURL, ALT, WIDTH, HEIGHT) 
{	WindowName = URL.substring(URL.lastIndexOf("/")+1);
	WindowProps = "width=" + (WIDTH+50) + ",height=" + (HEIGHT+75);
	text  = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';
	text += '<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">';
	text += '<head>';
	text += '<base href="'+ baseURL + '" />';
	text += '<title>'+ WindowName + ' (' + WIDTH + 'x' + HEIGHT + ' pixels) </title>';
	text += '<style	type="text/css">';
	text += '@import "CSSScripts/RLSlabStyle.css";';
	text += '</style>';
	text += '</head>';
	text += '<body>';
	text += '<div class="plain-image">';
	text += '<div class="table">';
	text += '<div class="table-row">';
	text += '<div class="table-cell-image">';
	text += '<img src="' + URL + '" ';
	text += 'width="' + WIDTH + 'px "';
	text += 'height="' + HEIGHT + 'px "';
	text += 'alt="' + ALT + '" />';
	text += '</div>';
	text += '</div>';
	text += '<div class="table-row">';
	text += '<div class="table-cell-short-caption">';
	text += '<p>';
	text += '<a href="javascript:parent.window.close()"';
	text += 'onclick="parent.window.close()">CLOSE THIS WINDOW</a>';
	text += '</p>';
	text += '</div>';
	text += '</div>';
	text += '</div>';
	text += '</body></html>';
	ImageWindow = window.open("", WindowName, WindowProps);
	ImageWindow.document.open();
	ImageWindow.document.write(text);
	ImageWindow.document.close();
}

function openFigWindow(URL, baseURL, ALT, CAPTION,  WIDTH, HEIGHT) 
{	UncleanCaption = String(CAPTION)
	ReplaceString = /   /gm
	UncleanCaption = UncleanCaption.replace(ReplaceString,'')
	temp0 = UncleanCaption.split("<a")
	CleanCaption   = new String("")
	for (i=0; i < temp0.length; ++i)
	{ if (i == 0)
	  {  CleanCaption += String(temp0[i])
	  }
	  else
	  {  temp = String(String(temp0[i]).split('\'>')[1]).split("</a>")
	     CleanCaption += temp[0].concat(temp[1])
	  }
	}
	tempA = CleanCaption.split("<img")
	CleanCaptionB   = new String("")
	for (i=0; i < tempA.length; ++i)
	{ if (i == 0)
	  {  CleanCaptionB += String(tempA[i])
	  }
	  else
	  {  tempB = String(String(tempA[i]).split('\' />')[1])
	     CleanCaptionB += tempB + " "
	  }
	}
	tempC = CleanCaptionB.split("<")
	CleanCaptionC   = new String("")
	for (i=0; i < tempC.length; ++i)
	{ if (i == 0)
	  {  CleanCaptionC += String(tempC[i])
	  }
	  else
	  {  tempD = String(String(tempC[i]).split('>')[1])
	     CleanCaptionC += tempD
	  }
	}
	CaptSpace = 15*(CleanCaptionC.length)*10/(WIDTH*0.75);
	if (CaptSpace < 15){CaptSpace = 15};
	WindowWidth = WIDTH + 50 + 30;
	WindowHeight = HEIGHT + 50 + 40 + CaptSpace;
	if (WindowHeight > 1024)
	{
	    WindowHeight = 1024;
	}
	WindowName = URL.substring(URL.lastIndexOf("/")+1);
	WindowProps = "width=" + WindowWidth + ",height=" + WindowHeight + ",resizable=yes";
	text  = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';
	text += '<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">';
	text += '<head>';
	text += '<base href="'+ baseURL + '" />';
	text += '<title>'+ WindowName + ' (' + WIDTH + 'x' + HEIGHT + ' pixels) </title>';
	text += '<style	type="text/css">';
	text += '@import "CSSScripts/RLSlabStyleV2.css";';
	text += '</style>';
	text += '</head>';
	text += '<body>';
	text += '<div id="FigWindow">';
	text += '  <div class="centered">';
	text += '      <img src="' + URL + '" ';
	text += '           width="' + WIDTH + 'px "';
	text += '           height="' + HEIGHT + 'px "';
	text += '           alt="' + ALT + '" />';
	text += '  </div>';
	text += '  <div class="centered75percent">';
	if (CleanCaptionC.length*10 > 0.75*WIDTH)
	{  text += '    <p class="justify">';
	} 
	else
	{  text += '    <p class="center">';
	}
	text += UncleanCaption;
	text += '    </p>';
	text += '    <p class="center">';
	text += '       <a href="javascript:parent.window.close()"';
	text += '          onclick="parent.window.close()">CLOSE THIS WINDOW</a>';
	text += '    </p>';
	text += '  </div>';
	text += '</div>';
	text += '</body></html>';
	ImageWindow = window.open("", WindowName, WindowProps);
	ImageWindow.document.open();
	ImageWindow.document.write(text);
	ImageWindow.document.close();
}

function openFigWindowWithDiagnostic(URL, baseURL, ALT, CAPTION,  WIDTH, HEIGHT) 
{	ImageWindow = window.open("", "diagnostic2", "width=600,height= 400,resizable=yes");
	ImageWindow.document.open();
	text0  = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';
	text0 += '<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">';
	text0 += '<head>';
	text0 += '<base href="'+ baseURL + '" />';
	text0 += '<title> Diagnostic window </title>';
	text0 += '<style	type="text/css">';
	text0 += '@import "CSSScripts/RLSlabStyleV2.css";';
	text0 += '</style>';
	text0 += '</head>';
	text0 += '<body>';
	text0 += '<p>This is the diagnostic window</p>';
	UncleanCaption = String(CAPTION)
	text0 += '<p> UncleanCaption:\"' + UncleanCaption + '\"<br />';
	text0 += 'UncleanCaption length=' + UncleanCaption.length + ' <br />';
	ReplaceString = /   /gm
	UncleanCaption = UncleanCaption.replace(ReplaceString,'')
	text0 += '<p>Cleaned UncleanCaption:\"' + UncleanCaption + '\"<br />';
	text0 += 'Clean UncleanCaption length=' + UncleanCaption.length + ' </p>';
	temp0 = UncleanCaption.split("<a")
	text0 += '<p>temp0:' + temp0 + '</p>';
	text0 += '<p>';
	CleanCaption   = new String("")
	for (i=0; i < temp0.length; ++i)
	{ if (i == 0)
	  {  CleanCaption += String(temp0[i])
	     text0 += 'i ='+i+', CleanCaption:\"' + CleanCaption + '\" <br />';
	  }
	  else
	  {  temp = String(String(temp0[i]).split('\'>')[1]).split("</a>")
	     CleanCaption += temp[0].concat(temp[1])
	     text0 += 'i ='+i+', CleanCaption:\"' + CleanCaption + '\" (temp:\"'+ temp +'\") <br />';
	  }
	}
	text0 += 'CleanCaption length=' + CleanCaption.length + ' <br />';
	tempA = CleanCaption.split("<img")
	text0 += '<p>tempA:' + tempA + '</p>';
	text0 += '<p>';
	CleanCaptionB   = new String("")
	for (i=0; i < tempA.length; ++i)
	{ if (i == 0)
	  {  CleanCaptionB += String(tempA[i])
	     text0 += 'i ='+i+', CleanCaptionB:\"' + CleanCaptionB + '\" <br />';
	  }
	  else
	  {  tempB = String(String(tempA[i]).split('\' />')[1])
	     CleanCaptionB += tempB + " "
	     text0 += 'i ='+i+', CleanCaptionB:\"' + CleanCaptionB + '\" (tempB:\"'+ tempB +'\") <br />';
	  }
	}
	text0 += 'CleanCaptionB length=' + CleanCaptionB.length + ' <br />';
	tempC = CleanCaptionB.split("&")
	text0 += '<p>tempC:' + tempC + '</p>';
	text0 += '<p>';
	CleanCaptionC   = new String("")
	for (i=0; i < tempC.length; ++i)
	{ if (i == 0)
	  {  CleanCaptionC += String(tempC[i])
	     text0 += 'i ='+i+', CleanCaptionC:\"' + CleanCaptionC + '\" <br />';
	  }
	  else
	  {  tempD = String(String(tempC[i]).split(';')[1])
	     CleanCaptionC += tempD
	     text0 += 'i ='+i+', CleanCaptionC:\"' + CleanCaptionC + '\" (tempD:\"'+ tempD +'\") <br />';
	  }
	}
	text0 += 'CleanCaptionC length=' + CleanCaptionC.length + ' <br />';
	tempE = CleanCaptionC.split("<")
	text0 += '<p>tempE:' + tempE + '</p>';
	text0 += '<p>';
	CleanCaptionD   = new String("")
	for (i=0; i < tempE.length; ++i)
	{ if (i == 0)
	  {  CleanCaptionD += String(tempE[i])
	     text0 += 'i ='+i+', CleanCaptionD:\"' + CleanCaptionD + '\" <br />';
	  }
	  else
	  {  tempF = String(String(tempE[i]).split('>')[1])
	     CleanCaptionD += tempF
	     text0 += 'i ='+i+', CleanCaptionD:\"' + CleanCaptionD + '\" (tempF:\"'+ tempF +'\") <br />';
	  }
	}
	text0 += 'CleanCaptionD length=' + CleanCaptionD.length ;
	text0 += '</p>';	
	text0 += '</body></html>';
	ImageWindow.document.write(text0);
	ImageWindow.document.close();
    CaptSpace = 15*(CleanCaptionD.length)*10/(0.75*WIDTH);
	if (CaptSpace < 15){CaptSpace = 15};
	WindowWidth = WIDTH + 50 + 30;
	WindowHeight = HEIGHT + 50 + 40 + CaptSpace;
	if (WindowHeight > 1024)
	{
	    WindowHeight = 1024;
	}
	WindowName = URL.substring(URL.lastIndexOf("/")+1);
	WindowProps = "width=" + WindowWidth + ",height=" + WindowHeight + ",resizable=yes";
	text  = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';
	text += '<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">';
	text += '<head>';
	text += '<base href="'+ baseURL + '" />';
	text += '<title>'+ WindowName + ' (' + WIDTH + 'x' + HEIGHT + ' pixels) </title>';
	text += '<style	type="text/css">';
	text += '@import "CSSScripts/RLSlabStyleV2.css";';
	text += '</style>';
	text += '</head>';
	text += '<body>';
	text += '<div id="FigWindow">';
	text += '  <div class="centered">';
	text += '      <img src="' + URL + '" ';
	text += '           width="' + WIDTH + 'px "';
	text += '           height="' + HEIGHT + 'px "';
	text += '           alt="' + ALT + '" />';
	text += '  </div>';
	text += '  <div class="centered75percent">';
	if (CleanCaptionD.length*10 > 0.75*WIDTH)
	{  text += '    <p class="justify">';
	} 
	else
	{  text += '    <p class="center">';
	}
	text += UncleanCaption;
	text += '    </p>';
	text += '<p> WIDTH=' + WIDTH + '</p>';
	text += '<p> HEIGHT=' + HEIGHT + '</p>';
	text += '<p> Caption length=' + CleanCaptionD.length + '</p>';
	text += '<p> CaptSpace=' + CaptSpace + '</p>';
	text += '<p> winheight=' + WindowHeight + '</p>';
	text += '    <p class="center">';
	text += '       <a href="javascript:parent.window.close()"';
	text += '          onclick="parent.window.close()">CLOSE THIS WINDOW</a>';
	text += '    </p>';
	text += '  </div>';
	text += '</div>';
	text += '</body></html>';
	ImageWindow = window.open("", WindowName, WindowProps);
	ImageWindow.document.open();
	ImageWindow.document.write(text);
	ImageWindow.document.close();
}

function IncludeCopyrightScreen() {
document.writeln('<p class="copyright-screen">');
document.writeln('Copyright © 2004, The Regents of the University of California.'); 
document.writeln('All Rights Reserved.');
document.writeln('<br />');
document.writeln('This page is maintained by ');
document.writeln('<a href="mailto:urrutia@ucla.edu">J. Manuel Urrutia</a>, ');
document.writeln('and <a href="http://www.w3.org/Style/">CSS</a> makes it '); 
document.writeln('<a href="javascript:openPrinterFriendly()")>printer-friendly</a>.');
document.writeln('<br />');
document.writeln('Last partial update: September 29, 2008.');
document.writeln('</p>');
}


function IncludeCopyrightPrint() {
document.writeln('<p class="copyright-print">');
document.writeln('Copyright © 2004, The Regents of the University of California.'); 
document.writeln('All Rights Reserved.');
document.writeln('<br />');
document.writeln('Page maintained by');
document.writeln('<a href="mailto:urrutia@ucla.edu">J. Manuel Urrutia</a>.');
document.writeln('<br />');
document.writeln('Last partial update: January 17, 2008.');
document.writeln('</p>');
}


function IncludeValidationIcons() {
document.writeln('<p>');
document.writeln('<a href="http://validator.w3.org/check/referer">');
document.writeln('   <img src="./valid-xhtml10.png"');
document.writeln('	alt="Valid XHTML 1.0!"');
document.writeln('	height="31px"');
document.writeln('	width="88px"');
document.writeln('        />');
document.writeln('</a>');
document.writeln('<br />');
document.writeln('<a href="http://jigsaw.w3.org/css-validator/">');
document.writeln('   <img src="./vcss.png"');
document.writeln('        alt="Valid CSS!"');
document.writeln('	height="31px"');
document.writeln('	width="88px"');
document.writeln('        />');
document.writeln('</a>');
document.writeln('</p>');
}


function IncludeFloatingMenu() {
document.writeln('<div class="Menu">');
document.writeln('<div class="MenuContents">');
document.writeln('<p class="menu">');
if ((window.location.pathname.indexOf("device")) > 0) 
{   document.writeln('<a href="index.html">Home </a>');
    document.writeln('<ah>Experimental device </ah>');
    document.writeln('<a href="research/index.html">Research Topics </a>');
    document.writeln('<a href="references/index.html">References </a>');
    document.writeln('<a href="conferences/index.html">Presentations </a>');
    document.writeln('<a href="outreach/index.html">Outreach </a>');
    document.writeln('<a href="labcourses/index.html">Laboratory Courses </a>');
    document.writeln('<a href="contactinfo/index.html">How to Contact Us </a>');
} 
else 
{ if ((window.location.pathname.indexOf("research")) > 0)
  { document.writeln('<a href="index.html">Home </a>');
    document.writeln('<a href="device/index.html">Experimental device </a>');
    document.writeln('<ah>Research Topics </ah>');
    document.writeln('<a href="references/index.html">References </a>');
    document.writeln('<a href="conferences/index.html">Presentations </a>');
    document.writeln('<a href="outreach/index.html">Outreach </a>');
    document.writeln('<a href="labcourses/index.html">Laboratory Courses </a>');
    document.writeln('<a href="contactinfo/index.html">How to Contact Us </a>');
  }
  else
  { if ((window.location.pathname.indexOf("references")) > 0)
    {  document.writeln('<a href="index.html">Home </a>');
       document.writeln('<a href="device/index.html">Experimental device </a>');
       document.writeln('<a href="research/index.html">Research Topics </a>');
       document.writeln('<ah>References </ah>');
       document.writeln('<a href="conferences/index.html">Presentations </a>');
       document.writeln('<a href="outreach/index.html">Outreach </a>');
       document.writeln('<a href="labcourses/index.html">Laboratory Courses </a>');
       document.writeln('<a href="contactinfo/index.html">How to Contact Us </a>');
    }
    else
    {  if((window.location.pathname.indexOf("conferences")) > 0)
       {  document.writeln('<a href="index.html">Home </a>');
	      document.writeln('<a href="device/index.html">Experimental device </a>');
	      document.writeln('<a href="research/index.html">Research Topics </a>');
	      document.writeln('<a href="references/index.html">References </a>');
	      document.writeln('<ah>Presentations </ah>');
          document.writeln('<a href="outreach/index.html">Outreach </a>');
          document.writeln('<a href="labcourses/index.html">Laboratory Courses </a>');
          document.writeln('<a href="contactinfo/index.html">How to Contact Us </a>');
       }
       else
       {  if((window.location.pathname.indexOf("outreach")) > 0)
          {  document.writeln('<a href="index.html">Home </a>');
	         document.writeln('<a href="device/index.html">Experimental device </a>');
	         document.writeln('<a href="research/index.html">Research Topics </a>');
	         document.writeln('<a href="references/index.html">References </a>');
	         document.writeln('<a href="conferences/index.html">Presentations </a>');
             document.writeln('<ah>Outreach </ah>');
             document.writeln('<a href="labcourses/index.html">Laboratory Courses </a>');
             document.writeln('<a href="contactinfo/index.html">How to Contact Us </a>');
          }
          else
          {  if((window.location.pathname.indexOf("labcourses")) > 0)
            {  document.writeln('<a href="index.html">Home </a>');
	           document.writeln('<a href="device/index.html">Experimental device </a>');
	           document.writeln('<a href="research/index.html">Research Topics </a>');
	           document.writeln('<a href="references/index.html">References </a>');
	           document.writeln('<a href="conferences/index.html">Presentations </a>');
               document.writeln('<a href="outreach/index.html">Outreach </a>');
               document.writeln('<ah>Laboratory Courses </ah>');
               document.writeln('<a href="contactinfo/index.html">How to Contact Us </a>');
            }
            else
            {  if((window.location.pathname.indexOf("contactinfo")) > 0)
              {  document.writeln('<a href="index.html">Home </a>');
	             document.writeln('<a href="device/index.html">Experimental device </a>');
	             document.writeln('<a href="research/index.html">Research Topics </a>');
	             document.writeln('<a href="references/index.html">References </a>');
	             document.writeln('<a href="conferences/index.html">Presentations </a>');
                 document.writeln('<a href="outreach/index.html">Outreach </a>');
                 document.writeln('<a href="labcourses/index.html">Laboratory Courses </a>');
                 document.writeln('<ah>How to Contact Us </ah>');
              }
              else
              {  document.writeln('<ah>Home </ah>');
	             document.writeln('<a href="device/index.html">Experimental device </a>');
	             document.writeln('<a href="research/index.html">Research Topics </a>');
	             document.writeln('<a href="references/index.html">References </a>');
	             document.writeln('<a href="conferences/index.html">Presentations </a>');
                 document.writeln('<a href="outreach/index.html">Outreach </a>');
                 document.writeln('<a href="labcourses/index.html">Laboratory Courses </a>');
                 document.writeln('<a href="contactinfo/index.html">How to Contact Us </a>');
              }
            }
          }
        }
    }
  }  
}
document.writeln('<a href="http://personnel.physics.ucla.edu/directory/faculty/stenzel.htm"');
document.writeln('   onclick="window.open(this.href);return false">Prof. R. L. Stenzel</a>');
document.writeln('<a href="http://www.physics.ucla.edu/index.htm"');
document.writeln('   onclick="window.open(this.href);return false">UCLA Physics & Astronomy</a>');
document.writeln('</p>');
document.writeln('<p class="menu">');
document.writeln('<a href="http://validator.w3.org/check/referer"');
document.writeln('   class="image">');
document.writeln('   <img src="./valid-xhtml10.png"');
document.writeln('	  alt="Valid XHTML 1.0!"');
document.writeln('	  height="31px"');
document.writeln('	  width="88px"');
document.writeln('    />');
document.writeln('</a>');
document.writeln('<a href="http://jigsaw.w3.org/css-validator/"');
document.writeln('   class="image">');
document.writeln('   <img src="./vcss.png"');
document.writeln('        alt="Valid CSS!"');
document.writeln('	  height="31px"');
document.writeln('	  width="88px"');
document.writeln('   />');
document.writeln('</a>');
document.writeln('</p>');
document.writeln('<p>');
document.writeln('NOTE: Tables and other items may not be displayed correctly ');
document.writeln('if your browser does not fully support CSS2.');
document.writeln('</p>');
document.writeln('</div>');
document.writeln('</div>');
}
/* <a href="http://www.w3.org/TR/REC-CSS2/cover.html"> */


function IncludeFloatingMenuAll() {
document.writeln('<div class="Menu">');
document.writeln('<div class="MenuContents">');
document.writeln('<p class="menu">');
document.writeln('<a href="index.html">Home </a>');
document.writeln('<a href="device/index.html">Experimental device </a>');
document.writeln('<a href="research/index.html">Research Topics </a>');
document.writeln('<a href="references/index.html">References </a>');
document.writeln('<a href="conferences/index.html">Presentations </a>');
document.writeln('<a href="outreach/index.html">Outreach </a>');
document.writeln('<a href="labcourses/index.html">Laboratory Courses </a>');
document.writeln('<a href="contactinfo/index.html">How to Contact Us </a>');
document.writeln('<a href="http://personnel.physics.ucla.edu/directory/faculty/stenzel.htm"');
document.writeln('   onclick="window.open(this.href);return false">Prof. R. L. Stenzel</a>');
document.writeln('<a href="http://www.physics.ucla.edu/index.htm"');
document.writeln('   onclick="window.open(this.href);return false">UCLA Physics & Astronomy</a>');
document.writeln('</p>');
document.writeln('<p class="menu">');
document.writeln('<a href="http://validator.w3.org/check/referer"');
document.writeln('   class="image">');
document.writeln('   <img src="./valid-xhtml10.png"');
document.writeln('	  alt="Valid XHTML 1.0!"');
document.writeln('	  height="31px"');
document.writeln('	  width="88px"');
document.writeln('   />');
document.writeln('</a>');
document.writeln('<a href="http://jigsaw.w3.org/css-validator/"');
document.writeln('   class="image">');
document.writeln('   <img src="./vcss.png"');
document.writeln('        alt="Valid CSS!"');
document.writeln('	  height="31px"');
document.writeln('	  width="88px"');
document.writeln('    />');
document.writeln('</a>');
document.writeln('</p>');
document.writeln('<p>');
document.writeln('NOTE: Tables and other items may not be displayed correctly ');
document.writeln('if your browser does not fully support CSS2.');
document.writeln('</p>');
document.writeln('</div>');
document.writeln('</div>');
}

