// JavaScript Document
function outputHeader(divName) {
//  var txt=document.getElementById(divName);

  var txt=getObject(divName);
  txt.innerHTML ='	<div id="headerLeft">'+
    			'		<img src="images/imagerlabs_logo 360x63.png"  alt="logo" />'+
    			'	<!-- end #headerLeft --></div>' +
    			'	<div id="headerMiddle">' + 
    			'		<h1>all about sensing</h1>' +
    			'	<!-- end #headerMiddle --></div>' +
  				'	<div id="headerRight">' + 
  				'		<!-- Use of this code assumes agreement with the Google Custom Search Terms of Service. -->' + 
            	'		<!-- The terms of service are available at http://www.google.com/cse/docs/tos.html -->' + 
            	'		<form action="http://www.google.com/search" name="cse" target="_blank" id="searchBox">' +
              	'			<input type="hidden" name="cref" value="" />' + 
              	'			<input type="hidden" name="ie" value="utf-8" />' +
              	'			<input type="hidden" name="hl" value="" />' +
              	'			<input name="q" type="text" size="18" />' + 
              	'			<input type="hidden" name="sitesearch" value="imagerlabs.com"/>' + 
              	'			<input type="image" src="images/Search.png" alt="Submit button" width="24" height="24"/>' + 
            	'		</form>' + 
   				'	<!-- end #headerRight --></div>';
}

function outputFooter(divName) {
//  var txt=document.getElementById(divName);
  var txt=getObject(divName);
  txt.innerHTML ='	<p>&copy; Copyright 2010 Imagerlabs Inc. CA USA. All Right Reserved</p>'+
    			 '<p>&nbsp;<a href="index.html">home</a>&nbsp;&#8226;&nbsp;' +
				 '<a href="privacyPolicy.html">privacy policy</a>&nbsp;&#8226;&nbsp;' +
				 '<a href="legalNotice.html">legal notice</a>&nbsp;&#8226;&nbsp;' +				 
				 '<a href="contactForm.html">contact</a>&nbsp;</p>' + 
				 '<p></p>';
}

function outputNavBar(divName) {
  var txt=getObject(divName);
  txt.innerHTML ='		<li><a href="index.html">Home</a>      </li>' + 
      			'		<li><a href="productsLowNoise.html" class="MenuBarItemSubmenu">Products</a>' + 
        		'			<ul>' + 
          		'				<li><a href="productsLowNoise.html">Ultra Low Noise</a></li>' + 
          		'				<li><a href="productsHighSpeed.html">Extreme Speed</a></li>' + 
          		'				<li><a href="productsMassSpec.html">Mass Spectroscopy</a></li>' + 
          		'				<li><a href="productsIonMobil.html">Ion Mobility Spectroscopy</a></li>' + 
        		'			</ul>' + 
      			'		</li>' + 
      			'		<li><a class="MenuBarItemSubmenu" href="appsLowNoise.html">Applications</a>' + 
        		'			<ul>' + 
          		'				<li><a href="appsLowNoise.html">Ultra Low Noise</a></li>' + 
          		'				<li><a href="appsHighSpeed.html">Extreme Speed</a></li>' + 
          		'				<li><a href="appsMassSpec.html">Mass Spectroscopy</a></li>' + 
          		'				<li><a href="appsIonMobil.html">Ion Mobility Spectroscopy</a></li>' + 
        		'			</ul>' +
      			'		</li>' + 
      			'		<li><a href="technology.html">Technology</a></li>' + 
      			'		<li><a href="companyAbout.html" class="MenuBarItemSubmenu">Company</a>' + 
        		'			<ul>' + 
          		'				<li><a href="companyAbout.html">About Us</a></li>' + 
          		'				<li><a href="companyPartners.html">Our Partners</a></li>' + 
          		'				<li><a href="companyNews.html">News</a></li>' + 
          		'				<li><a href="companyCareers.html">Careers</a></li>' + 
        		'			</ul>' + 
      			'		</li>' + 
      			'		<li><a href="contactForm.html" class="MenuBarItemSubmenu">Contact</a>' + 
        		'			<ul>' + 
          		'				<li><a href="contactDirections.html">Directions</a></li>' + 
          		'				<li><a href="contactForm.html">Contact Us</a></li>' + 
        		'			</ul>' + 
      			'		</li>';  
	var MenuBar1 = new Spry.Widget.MenuBar("MenuBarNavigation", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});				
}
