	{
        	writeNews(); //call to function that writes the TABS to the page
	}

function writeNews() //this function writes the TABS to the page
	{
        document.open();
        //add your code here  
 				document.writeln("<div id='tabs' style='padding-top:4em;'><br /><span class='white'>.</span> <a href='/index.html' target='_top' class='selected' title='Return to Wadsworth Center Home Page'>Home</a><span class='white'>.</span> ");
				document.writeln("<a href=/about.htm class='plain' target='_top' title=About Wadsworth Center>About</a><span class='white'>.</span> ");
        document.writeln("<a href='/research.htm' class='plain' target='_top' title='Research Resources at Wadsworth Center'>Science</a><span class='white'>.</span> ");
				document.writeln("<a href='/labservices.htm' class='plain' target='_top' title='/docs/education.shtml'>Education</a><span class='white'>.</span> ");
        document.writeln("<a href='/docs/information.shtml' class='plain' target='_top' title='Information'>Information</a><span class='white'>.</span> ");
				document.writeln("<a href='/docs/search.shtml' class='plain' target='_top' title='Search'>Search</a><span class='white'>.</span></div>");
				/* document.writeln("<div class='documentActions'><a href='#'onclick='history.back();return false;' onkeypress='history.back();return false;' title='Return to Previous Page'>&lt;&lt;&#160; <span class='white'>previous page</span></a><span class='white'>.</span><noscript><div>back button</div></noscript><a href='/comments.htm' title='Contact Us'><span class='white'>contact us</span><span id='email'></span></a><span class='white'>.</span><noscript><div>email</div></noscript><a href='javascript:this.print();' title='Print Main Content'><span class='white'>print page</span><span id='print'></span></a><noscript><div>print document content</div></noscript><a href='/index.html' title='Wadsworth Home'><span class='white'>Home</span><span id='home'></span></a><noscript><div>Wadsworth Center Home</div></noscript></div>");
				document.writeln("<p>&nbsp;</p>"); */
//end adding your code
        
        
	}



