// JavaScript Document: library.js

function showTopLinks() {
	document.write('<img src="img/spacer.gif" width="799" height="88" /><br />' + 
					'<img src="img/bg_tl.gif" />' + 
					'<a href="#">ABOUT US</a> &nbsp; ' + 
					'<img src="img/bg_tl.gif" />' + 
					'<a href="#">SERVICES</a> &nbsp; ' + 
					'<img src="img/bg_tl.gif" />' + 
					'<a href="#">PROFILE</a> &nbsp; ' + 
					'<img src="img/bg_tl.gif" />' + 
					'<a href="#">CAREERS WITH US</a> &nbsp; ' + 
					'<img src="img/bg_tl.gif" />' + 
					'<a href="#">CONTACT US</a> &nbsp; &nbsp;<br />' + 
					'<img src="img/spacer.gif" width="799" height="45" /><br />');
}

function showFooter() {
	document.write('<div id="CBottomLinks" class="workArea">' + 
						'<a href="#">Application Development</a>&nbsp; | &nbsp;' + 
						'<a href="#">Web Development</a>&nbsp; | &nbsp;' + 
						'<a href="#">eCommerce Solutions</a>&nbsp; | &nbsp;' + 
						'<a href="#">Web Designing</a>&nbsp; | &nbsp;' + 
						'<a href="#">Healthcare</a>&nbsp; | &nbsp;' + 
						'<a href="#">Virtual Reality</a>' + 
					'</div>' + 
					'<div id="CFooter" class="footer">' + 
						'&copy; <a href="http://www.modulus.co.in/">Modulus Software</a>. 2007-2008' + 
						' &nbsp; &nbsp; ' + 
					'</div>');
}


