//################################################################################	
//
//S T A R T   F O O T E R
//
//################################################################################				
				var strLocation = document.URL ;
				var mypos;		
				var mypos1; 
				var mypos2; 
				var mypos3;
				var mypos4; 
				var mypos5; 
				var mypos6; 
				var mypos7; 	
				var mypos8;
				var mypos9; 	
				var mypos10; 	
				var mypos11; 			
//------------------------------------------------------------------
//  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("ABOUT");										
						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</a><font color='#FFFFFF'>|</font>");					
//------------------------------------------------------------------
//  P R O D U C T S   &   S E  R V I C E S 
//------------------------------------------------------------------						
						mypos = (document.URL.toUpperCase()).indexOf("OVERVIEW");	
						mypos1 = (document.URL.toUpperCase()).indexOf("CONSULTING");
						mypos2 = (document.URL.toUpperCase()).indexOf("VIDEO_CCTV");	
						mypos3 = (document.URL.toUpperCase()).indexOf("ACCESS_CONTROL");
						mypos4 = (document.URL.toUpperCase()).indexOf("ALARMS");	
						mypos5 = (document.URL.toUpperCase()).indexOf("MONITORING");
						mypos6 = (document.URL.toUpperCase()).indexOf("ELECTRONIC_SWEEPS");
						mypos7 = (document.URL.toUpperCase()).indexOf("GUARDS");		
						mypos8 = (document.URL.toUpperCase()).indexOf("PRIVATE_INVESTIGATIONS");	
						mypos9 = (document.URL.toUpperCase()).indexOf("BACKGROUND_CHECK");		
						mypos10 = (document.URL.toUpperCase()).indexOf("C-TPAT");		
						mypos11 = (document.URL.toUpperCase()).indexOf("MEDICAL");										
						if((mypos>=0) || (mypos1>=0) || (mypos2>=0) || (mypos3>=0) || (mypos4>=0) || (mypos5>=0) || (mypos6>=0) || (mypos7>=0) || (mypos8>=0) || (mypos9>=0) || (mypos10>=0) || (mypos11>=0)){ 					
							document.write("<a href='overview.htm' class='footer_on' style='margin-right:10px; margin-left:10px;'>");	
						}else{						
						document.write("<a href='overview.htm' class='footer' style='margin-right:10px; margin-left:10px;'>");	
						}											
						document.write("Products & Services</a><font color='#FFFFFF'>|</font>");				
//------------------------------------------------------------------
//  C O N T A C T   U S
//------------------------------------------------------------------
						mypos = (document.URL.toUpperCase()).indexOf("CONTACT_US");										
						if(mypos>=0){ 					
							document.write("<a href='Contact_Us.htm' class='footer_on' style='margin-left:10px;'>");	
						}else{					
						document.write("<a href='Contact_Us.htm' class='footer' style='margin-left:10px;'>");	
						}											
						document.write("Contact Us</a>");				
	
//<!--- 	
//E N D   F O O T E R
//--->

