//Simple Javascript date script, this creates the date instance and returns the year of the system date
var today = new Date();
var cYear = today.getYear();
document.write('<table cellspacing="0" cellpadding="0" width="100%">'+
		'<tr><td align="right" width="1" bgcolor="darkred"><img src="images/spacer.gif" width="1" border="0"></td></tr>'+
	'</table>');
	
document.write('<table align="center" cellpadding="2" cellspacing="0" class="menutext" width="100%">'+
	'<tr>' +
		'<td align="center">'+
			'<a href="index.html" title="Home">Home</a> '+
			'- <a href="tube_assembly.html" title="Tube Assembly">Tube Assembly</a> '+
			'- <a href="tubenomenclature.html" title="Tube Nomenclature">Tube Nomenclature</a> '+
			'- <a href="brazing_welding.html" title="Brazing & Welding">Brazing & Welding</a> '+
			'- <a href="swaging.html" title="Swaging">Swaging Capabilities</a> '+
			'- <a href="engineering.html" title="Engineering">Engineering Capabilities</a> '+
			'- <a href="Inventory_For_Sale.html" title="Inventory For Sale">Inventory For Sale</a> '+
			'- <a href="contact.html" title="Contact Us">Contact Us</a> '+
			'- <a href="terms.html" title="Terms & Conditions">Terms & Conditions</a> '+
			'- <a href="kudos.html" title="Customer Kudos">Customer Kudos</a> '+
			'- <a href="past_successes.html" title="Past Successes">Past Successes</a> '+
			'- <a href="opportunities.html" title="Job Opportunities">Job Opportunities</a> '+
			'- <a href="directions.html" title="Directions">Directions</a> '+
			'- <a href="suppliers.html" title="Potential Suppliers">Potential Suppliers</a> '+
			'- <a href="site_map.html" title="Site Map">Site Map</a></td> '+






	'</tr>'+
	'<tr>' +
		'<td align="center" colspan="3">&copy;'+cYear+' Scotia Technology</td>'+
	'</tr>'+
'</table>');