//Use extreme care if editing this file, as there are a series of double and single quotes which need to be placed appropriately.//In addition, the images are accessed through their index position in the images array for the purpose of implementing the rollover.//The author strongly suggests making a back up copy of this file prior to editing.//Just stores a string of HTML code to eliminate redundancy on the individual pagesfunction menutopright(){  var htmlCodeString = ""; //variable to hold the html code that prints the menu  //this first section of code draws the top part of the table  //i changed   htmlCodeString += '    <td valign="middle"><a href="' + events + '"><img src="images/mevents.gif" border=1></a></td>' + "\n";    htmlCodeString = '<table bgcolor="F8F8F8" cellspacing=0 cellpadding=3 width=100% height="100%" border=0>' + "\n";  htmlCodeString += '    <tr>' + "\n";  htmlCodeString += '    <td valign="middle"><a href="' + events + '"><img src="images/mevents.gif" border=1></a></td>' + "\n";  htmlCodeString += '    <td valign="middle"><a href="' + stelarc + '"><img src="images/mstelarc.gif" border=1></a></td>' + "\n";  htmlCodeString += '    <td valign="middle"><a href="' + contact + '"><img src="images/mcontact.gif" border=1></a></td>' + "\n";  htmlCodeString += '    <td valign="middle"><img src="images/mdash.gif"></td>' + "\n";  htmlCodeString += '    <td valign="middle"><a href="' + peeps + '"><img src="images/mpeeps.gif" border=1></a></td>' + "\n";    htmlCodeString += '    <td valign="middle"><a href="' + home + '"><img src="images/mhome.gif" border=1></a></td>' + "\n";  htmlCodeString += '    <td valign="middle"><a href="http://www.lancs.ac.uk" target="_blank"><img src="images/mlogo.gif" border=1></a></td>' + "\n";  htmlCodeString += '    </td>' + "\n";  htmlCodeString += '    </tr>' + "\n";  htmlCodeString += '    </table>' + "\n";  document.write(htmlCodeString + "\n" );  document.close( );} //end menutop