<!--
function Service()
{
	document.write ("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;For service call 319-337-9681");
}


function MainMenu1()
{
	if (pageName=="Home")
		document.write("<td width='20%' align='center'><a href='index.asp' class='mainMenuOn'>Home</a></td>");
	else
		document.write("<td width='20%' align='center'><a href='index.asp' class='Menu'>Home</a></td>");
	
	if (pageName=="Service")
		document.write("<td width='20%' align='center'><a href='service_home.asp' class='mainMenuOn'>Service</a></td>");
	else
		document.write("<td width='20%' align='center'><a href='service_home.asp' class='Menu'>Service</a></td>");
		
	if (pageName == "aboutUs")
		document.write("<td width='28%' align='center' class='mainMenuOn'>About Us</td>");
	else
		document.write("<td width='28%' align='center'><a href='aboutUs_home.asp' class='Menu'>About Us</a></td>");
	
	if (pageName == "Contact")
		document.write("<td width='25%' align='center' class='mainMenuOn'>Contact Info</td>");
	else
		document.write("<td width='25%' align='center'><a href='contact.asp' class='Menu'>Contact Info</a></td>");
}

function Aaron()
{
   var a, b, c, d, addr;
   a = "ABolson";
   c = "@";
   b = "larewco";
   d = ".com"
   addr = a+c+b+d;

  document.write("<a href='mailto:"+addr+"'>"+addr+"</a>");
}

-->