//################################################################################	
//
//S T A R T   F O O T E R
//
//################################################################################				
				var strLocation = document.URL ;
				var mypos;		
						
//------------------------------------------------------------------
//  H O M E
//------------------------------------------------------------------						
						mypos = (document.URL.toUpperCase()).indexOf("INDEX");		
						//checks for the name index.htm in the URL, or the title of the page, if the URL
						//does not show the index.htm - for example the user types in the url, without the 
						//index.htm, which would still process as the default page for the site.						
						if((mypos>=0) || (document.title=="Home")){					
							document.write("<a href='../index.htm' class='footer_on' style='margin-right:10px;'>");	
						}else{					
						document.write("<a href='../index.htm' class='footer' style='margin-right:10px;'>");	
						}											
						document.write("home</a><font color='#FFFFFF'>|</font>");		
		
		
//------------------------------------------------------------------
//   A B O U T
//------------------------------------------------------------------					
						mypos = (document.URL.toUpperCase()).indexOf("ROLL_FORMING");										
						if(mypos>=0){ 					
							document.write("<a href='about.htm' class='footer_on' style='margin-left:10px; margin-right:10px;'>");	
						}else{					
						document.write("<a href='about.htm' class='footer' style='margin-left:10px; margin-right:10px;'>");	
						}											
						document.write("about us</a><font color='#FFFFFF'>|</font>");		
						
						
						
		
		
		
											
//------------------------------------------------------------------
//   R O L L _ F O R M I N G
//------------------------------------------------------------------					
						mypos = (document.URL.toUpperCase()).indexOf("ROLL_FORMING");										
						if(mypos>=0){ 					
							document.write("<a href='roll_forming.htm' class='footer_on' style='margin-left:10px; margin-right:10px;'>");	
						}else{					
						document.write("<a href='roll_forming.htm' class='footer' style='margin-left:10px; margin-right:10px;'>");	
						}											
						document.write("roll forming</a><font color='#FFFFFF'>|</font>");		
						
						
						
						
						
						
						
//------------------------------------------------------------------
//   S E R V I C E S
//------------------------------------------------------------------					
						mypos = (document.URL.toUpperCase()).indexOf("SERVICES");										
						if(mypos>=0){ 					
							document.write("<a href='services.htm' class='footer_on' style='margin-left:10px; margin-right:10px;'>");	
						}else{					
						document.write("<a href='services.htm' class='footer' style='margin-left:10px; margin-right:10px;'>");	
						}											
						document.write("other services</a><font color='#FFFFFF'>|</font>");	
						
						


						
//------------------------------------------------------------------
//  Q U A L I T Y
//------------------------------------------------------------------					
						mypos = (document.URL.toUpperCase()).indexOf("QUALITY");										
						if(mypos>=0){ 					
							document.write("<a href='quality.htm' class='footer_on' style='margin-left:10px; margin-right:10px;'>");	
						}else{					
						document.write("<a href='quality.htm' class='footer' style='margin-left:10px; margin-right:10px;'>");	
						}											
						document.write("quality</a><font color='#FFFFFF'>|</font>");	
						
						
						

								

//------------------------------------------------------------------
//  C O N T A C T
//------------------------------------------------------------------					
						mypos = (document.URL.toUpperCase()).indexOf("CONTACT");										
						if(mypos>=0){ 					
							document.write("<a href='contact.htm' class='footer_on' style='margin-left:10px; margin-right:10px;'>");	
						}else{					
						document.write("<a href='contact.htm' class='footer' style='margin-left:10px; margin-right:10px;'>");	
						}											
						document.write("contact info</a><font color='#FFFFFF'>|</font>");	

//<!--- 	
//E N D   F O O T E R
//--->

