// JavaScript Document

function writeFooter(){
	document.write("<p>&copy; Copyright 2009. All Rights Reserved. Contact ARC Products, Inc. at (214) 638-2468 or Fax (214) 638-2941</p>");
}

function writeHeader(){
	document.write('<table cellpadding="0" cellspacing="0" border="0"><tr><td id="btnHome"><a href="index.html"></a></td><td id="btnAbout"><a href="aboutus.html"></a></td><td id="btnIndustries"><a href="industries.html"></a></td><td id="btnContact"><a href="contact.html"></a></td></tr></table>')	;
}

function switchMenu(obj) {
	var el = document.getElementById(obj);
	if ( el.style.display != "none" ) {
		el.style.display = 'none';
	}
	else {
		el.style.display = '';
	}
}