// JavaScript Document


//////////////////////////////////////////////////

function makefooter(sSection){
	document.write('<div align="left" class="footer">');
	document.write('<a href="index.php">Home</a> | ');
	document.write('<a href="design.php">Design</a> | ');
	document.write('<a href="hosting.php">Hosting</a> | ');
	document.write('<a href="portfolio.php">Portfolio</a> | ');
	document.write('<a href="prices.php">Prices</a> | ');
	document.write('<a href="contact.php">Contact</a> </div>');
}

