window.onerror = null;
var bName = navigator.appName;
var bVer = parseInt(navigator.appVersion);

var NS4 = (bName == "Netscape" && bVer >= 4);

var IE4 = (bName == "Microsoft Internet Explorer" && bVer >= 4);

var NS3 = (bName == "Netscape" && bVer < 4);

var IE3 = (bName == "Microsoft Internet Explorer" && bVer < 4);

var OPR = (bName == "Opera");

var menuActive = 0;

var menuOn = 0;

var onLayer;

var timeOn = null; // LAYER SWITCHING CODE



if (NS4 || IE4) {

    if (navigator.appName == "Netscape"){

        if(document.layers) {

           layerStyleRef="layer.";

           layerRef="document.layers";

           styleSwitch="";

           layerVis="show";

           layerHid="hide";

        } else {

           layerStyleRef="layer.style.";

           layerRef="document.all";

           styleSwitch=".style";

           layerVis="visible";

           layerHid="hidden";

        }

    }else

    {

        layerStyleRef="layer.style.";

        layerRef="document.all";

        styleSwitch=".style";

        layerVis="visible";

        layerHid="hidden";

    }

}



function id(id) {

   if (document.getElementById) {

      return document.getElementById(id);

   }

   else if (window[id]) {

      return window[id];

   }

   return null;

}



// SHOW MENU

function showLayer(layerName,imgName) {

   var idlayerName = id(layerName);

   var img = getImage("imgTabs");

   var x = getImagePageLeft(img);

   var y = getImagePageTop(img);

   var menuTop = y + 32 ; // LAYER TOP POSITION

   var SerL = x + 50 ; // 'Ser' LAYER LEFT POSITION

   var ProL = x + 110 ;  // 'Pro' LAYER LEFT POSITION

   var ResL = x + 150 ; // 'Res' LAYER LEFT POSITION

   var RatL = x + 275 ;  // 'Rat' LAYER LEFT POSITION

   var sptL = x + 220 ; //'spt' LAYER LEFT POSITION

   var abtL = x + 270 ; //'abt' LAYER LEFT POSITION

   if (timeOn != null) {

      clearTimeout(timeOn);

      hideLayer(onLayer);

   }

   if (idlayerName) {

      idlayerName.style.visibility = "visible";

      idlayerName.style.top  = eval('"' + menuTop + '"');

      idlayerName.style.left = eval('"' + eval(layerName + 'L') + '"');

   }

   onLayer = layerName;

}

// HIDE MENU

function hideLayer(layerName){

   if (menuActive == 0) {

      var idlayerName = id(layerName);

      if (idlayerName)

         idlayerName.style.visibility = "hidden";

   }

}

// TIMER FOR BUTTON MOUSE OUT

function btnTimer() {

   timeOn = setTimeout("btnOut()",500);

}

// BUTTON MOUSE OUT

function btnOut(layerName) {

 if (menuActive == 0) {

   hideLayer(onLayer);

 }

}

// MENU MOUSE OVER 

function menuOver(itemName) {

   clearTimeout(timeOn);

   menuActive = 1;

}

 // MENU MOUSE OUT 

function menuOut(itemName) {

   menuActive = 0;

   timeOn = setTimeout("hideLayer(onLayer)", 200);

}

 // SET BACKGROUND COLOR 

function setBgColor(layer, color) {

  if (NS4){

    eval('window.document.layers["'+layer+'"].document.bgColor="'+color+'"');

    eval('window.document.layers["'+layer+'"].saveColor="'+color+'"');

  }

  if (IE4){

    eval('document.all.'+layer+'.style.backgroundColor="'+color+'"');

  }

}

function getImage(name) {

  if (NS4) {

    return findImage(name, document);

  }

  if (IE4) {

    return eval('document.all.' + name);

  }

  //vor
  if (OPR) {

    return eval('document.all.' + name);

  }//vor

  return null;

}

function findImage(name, doc) {

  var i, img;

  for (i = 0; i < doc.images.length; i++)

    if (doc.images[i].name == name)

      return doc.images[i];

  for (i = 0; i < doc.layers.length; i++)

    if ((img = findImage(name, doc.layers[i].document)) != null) {

      img.container = doc.layers[i];

      return img;

    }

  return null;

}



function getImagePageLeft(img) {

  var x, obj;

  if (NS4) {

    if (img.container != null)

      return img.container.pageX + img.x;

    else

      return img.x;

  }

  if (IE4) {

    x = 0;

    obj = img;

    while (obj.offsetParent != null) {

      x += obj.offsetLeft;

      obj = obj.offsetParent;

    }

    x += obj.offsetLeft;

    return x;

  }

  //vor
  if (OPR) {

    x = 0;

    obj = img;

    while (obj.offsetParent != null) {

      x += obj.offsetLeft;

      obj = obj.offsetParent;

    }

    x += obj.offsetLeft;

    return x;

  }
  //vor

  return -1;

}



function getImagePageTop(img) {

  var y, obj;

  if (NS4) {

    if (img.container != null)

      return img.container.pageY + img.y;

    else

      return img.y;

  }

  if (IE4) {

    y = 0;

    obj = img;

    while (obj.offsetParent != null) {

      y += obj.offsetTop;

      obj = obj.offsetParent;

    }

    y += obj.offsetTop;

    return y;

  }

  if (OPR) {

    y = 0;

    obj = img;

    while (obj.offsetParent != null) {

      y += obj.offsetTop;

      obj = obj.offsetParent;

    }

    y += obj.offsetTop;

    return y;

  }

  return -1;

}



function printDIVtop() //this have other code in index.html

{

document.writeln('<div id=Ser style="position:absolute; left:150px; top:0px; width:170px; height:150px; visibility:hidden">'); 

document.writeln('<table border="0" cellspacing="0" cellpadding="0" onmouseout="menuOut(\'rollimg2\');" onmouseover="menuOver(\'rollimg2\');">');

document.writeln('     <tr> ');

document.writeln('       <td bgcolor="#ffffff"> ');

document.writeln('          <table border="0" cellpadding="4" cellspacing="1">');

document.writeln('               <tr id="sr1" bgcolor="#0e3d58"> ');

document.writeln('                <td bgcolor="#0066CC"><a class=headerlinks href="../company/prodoverview.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>Product Overview </a></td>');

document.writeln('               </tr>');

document.writeln('               <tr id="sr2" bgcolor="#0e3d58"> ');

document.writeln('                 <td bgcolor="#0066CC"><a class=headerlinks href="../company/products.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>Product Catalogue </a></td>');

document.writeln('               </tr>');

document.writeln('               <tr id="sr17"  bgcolor="#0e3d58"> ');

document.writeln('                 <td bgcolor="#0066CC"><a class=headerlinks href="../company/productmatrix.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>Product Road Map</a></td>');

document.writeln('               </tr>');

document.writeln('               <tr id="sr3" bgcolor="#0e3d58"> ');

document.writeln('                 <td bgcolor="#0066CC"><a class=headerlinks href="../company/sensorProbe2.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>sensorProbe2™</a></td>');

document.writeln('               </tr>');

document.writeln('               <tr id="sr4" bgcolor="#0e3d58"> ');

document.writeln('                 <td bgcolor="#0066CC"><a class=headerlinks href="../company/sensorProbe2DC.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>sensorProbe2DC</a></td>');

document.writeln('               </tr>');

document.writeln('               <tr id="sr5" bgcolor="#0e3d58"> ');

document.writeln('                 <td bgcolor="#0066CC"><a class=headerlinks href="../company/sensorProbe8.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>sensorProbe8™</a></td>');

document.writeln('               </tr>');

document.writeln('               <tr id="sr6" bgcolor="#0e3d58"> ');

document.writeln('                 <td bgcolor="#0066CC"><a class=headerlinks href="../company/sensorProbe8X20.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>sensorProbe8-X20</a></td>');

document.writeln('               </tr>');

document.writeln('               <tr id="sr7" bgcolor="#0e3d58"> ');

document.writeln('                 <td bgcolor="#0066CC"><a class=headerlinks href="../company/sensorProbe8X60.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>sensorProbe8-X60</a></td>');

document.writeln('               </tr> ');

document.writeln('               <tr id="sr8" bgcolor="#0e3d58"> ');

document.writeln('                 <td bgcolor="#0066CC"><a class=headerlinks href="../company/securityProbe_5e.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>securityProbe 5E</a></td>');

document.writeln('               </tr>');

document.writeln('               <tr id="sr8" bgcolor="#0e3d58"> ');

document.writeln('                 <td bgcolor="#0066CC"><a class=headerlinks href="../company/e_opto16.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>Expansion Modules</a></td>');

document.writeln('               </tr>');

document.writeln('               <tr id="sr9" bgcolor="#0e3d58"> ');

document.writeln('                 <td bgcolor="#0066CC"><a class=headerlinks href="../company/securityProbeX20.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>securityProbe-X20</a></td>');

document.writeln('               </tr>');

document.writeln('               <tr id="sr10" bgcolor="#0e3d58"> ');

document.writeln('                 <td bgcolor="#0066CC"><a class=headerlinks href="../company/securityProbeX60.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>securityProbe-X60</a></td>');

document.writeln('               </tr>');
document.writeln('               <tr id="sr10" bgcolor="#0e3d58"> ');

document.writeln('                 <td bgcolor="#0066CC"><a class=headerlinks href="../company/sc1.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>SC1</a></td>');

document.writeln('               </tr>');

document.writeln('               <tr id="sr12"  bgcolor="#0e3d58"> ');

document.writeln('                 <td bgcolor="#0066CC"><a class=headerlinks href="../company/intelligentsensors.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>Intelligent Sensors</a></td>');

document.writeln('               </tr>');

document.writeln('               <tr id="sr13"  bgcolor="#0e3d58"> ');

document.writeln('                 <td bgcolor="#0066CC"><a class=headerlinks href="../company/powersupply.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>Power Supplies</a></td>');

document.writeln('               </tr>');

document.writeln('               <tr id="sr14"  bgcolor="#0e3d58"> ');

document.writeln('                 <td bgcolor="#0066CC"><a class=headerlinks href="../company/snm_overview.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>Sensor Notification Wizard</a></td>');

document.writeln('               </tr>');

document.writeln('               <tr id="sr15"  bgcolor="#0e3d58"> ');

document.writeln('                 <td bgcolor="#0066CC"><a class=headerlinks href="../company/nms.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>NMS Integration</a></td>');

document.writeln('               </tr>');

document.writeln('               <tr id="sr16"  bgcolor="#0e3d58"> ');
document.writeln('               <td bgcolor="#0066CC"><a class=headerlinks href="../company/mobile_access.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>Mobile Access</a></td> ');
document.writeln('               </tr> ');

document.writeln('               <tr id="sr16"  bgcolor="#0e3d58"> ');
document.writeln('               <td bgcolor="#0066CC"><a class=headerlinks href="../company/maps_module1.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>Mapping Module</a></td> ');
document.writeln('               </tr> ');

document.writeln('               <tr id="sr18"  bgcolor="#0e3d58"> ');

document.writeln('                 <td bgcolor="#0066CC"><a class=headerlinks href="../company/reqdemo.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>Online Demo</a></td>');

document.writeln('               </tr>');

document.writeln('               <tr id="sr18"  bgcolor="#0e3d58"> ');

document.writeln('                 <td bgcolor="#0066CC"><a class=headerlinks href="../company/buy.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>Online Purchase</a></td>');

document.writeln('               </tr>');

document.writeln('               <tr id="sr17"  bgcolor="#0e3d58"> ');

document.writeln('                 <td bgcolor="#0066CC"><a class=headerlinks href="../company/pricelist.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>Price List</a></td>');

document.writeln('               </tr>');

document.writeln('          </table>');

document.writeln('      </td>');

document.writeln('   </tr>');

document.writeln('</table>');

document.writeln('</div>');

document.writeln('	<!--')

document.writeln('<div id=Pro style="position:absolute; left:150px; top:0px; width:150px; height:150px; visibility:hidden" > ');

document.writeln('  <table border="0" cellspacing="0" cellpadding="0"  onMouseOver="menuOver(\'rollimg2\')" onmouseout="menuOut(\'rollimg2\')" >');

document.writeln('    <tr> ');

document.writeln('      <td bgcolor="#ffffff"> ');

document.writeln('        <table border="0" cellpadding="4" cellspacing="1">');

document.writeln('          <tr id="pr1"  bgcolor="#0e3d58"> ');

document.writeln('              <td bgcolor="#0066CC"><a class=headerlinks target=_top ');

document.writeln('               href="../company/partner.htm"><img height=2 src="../images/spacer.gif" width=5 border=0>Partners</a></td>');

document.writeln('          </tr>');

document.writeln('          <tr id="pr2"  bgcolor="#0e3d58"> ');

document.writeln('              <td bgcolor="#0066CC"><a class=headerlinks target=_top');

document.writeln('               href="../company/partner.htm"><img height=2 src="../images/spacer.gif" width=5 border=0>Partnership Programs</a></td>');

document.writeln('          </tr>');

document.writeln('        </table>');

document.writeln('      </td>');

document.writeln('    </tr>');

document.writeln('  </table>');

document.writeln('</div>');

document.writeln('	-->')

document.writeln('<div id=Res style="position:absolute; left:160px; top:0px; width:85px; height:73px; visibility:hidden" > ');

document.writeln('    <table border="0" cellspacing="0" cellpadding="0" onmouseover="menuOver(\'rollimg2\')" onmouseout="menuOut(\'rollimg2\')">');

document.writeln('      <tr> ');

document.writeln('        <td bgcolor="#ffffff"> ');

document.writeln('            <table border="0" cellpadding="4" cellspacing="1">');

document.writeln('              <tr id="rsp1"  bgcolor="#0e3d58"> ');

document.writeln('                <td bgcolor="#0066CC"><a class=headerlinks target=_top href="../company/application.htm"><img height=2 src="../images/spacer.gif" width=5 border=0>Application</a></td>');

document.writeln('              </tr>');

document.writeln('              <tr id="rsp2"  bgcolor="#0e3d58"> ');

document.writeln('                <td bgcolor="#0066CC"><a class=headerlinks target=_top href="../company/casestudy9.htm"><img height=2 src="../images/spacer.gif" width=5 border=0>Case Study</a></td>');

document.writeln('              </tr>');

document.writeln('              <tr id="rsp3"  bgcolor="#0e3d58"> ');

document.writeln('                <td bgcolor="#0066CC"><a class=headerlinks target=_top href="../company/certification.htm"><img height=2 src="../images/spacer.gif" width=5 border=0>Certification</a></td>');

document.writeln('              </tr>');

document.writeln('              <tr id="rsp4"  bgcolor="#0e3d58">');

document.writeln('                <td bgcolor="#0066CC"><a class=headerlinks  target=_top href="../company/customers.htm"><img height=2 src="../images/spacer.gif" width=5 border=0>Customers</a></td>');

document.writeln('              </tr>');

document.writeln('              <tr id="rsp4"  bgcolor="#0e3d58">');

document.writeln('                <td bgcolor="#0066CC"><a class=headerlinks  target=_top href="../company/testimonials.htm"><img height=2 src="../images/spacer.gif" width=5 border=0>Testimonials</a></td>');

document.writeln('              </tr>');

document.writeln('            </table>');

document.writeln('        </td>');

document.writeln('      </tr>');

document.writeln('    </table>');

document.writeln('  </div>');

document.writeln('<div id=spt style="position:absolute; left:150px; top:0px; width:125px; height:51px; visibility:hidden" > ');

document.writeln('      <table border="0" cellspacing="0" cellpadding="0" onmouseover="menuOver(\'rollimg2\')" onmouseout="menuOut(\'rollimg2\')">');

document.writeln('        <tr> ');

document.writeln('          <td bgcolor="#ffffff"> ');

document.writeln('            <table border="0" cellpadding="4" cellspacing="1">');

document.writeln('              <tr id="rat2"  bgcolor="#0e3d58"> ');

document.writeln('                <td bgcolor="#0066CC"><a class=headerlinks target=_top ');

document.writeln('                  href="../company/firmwareupdate.htm"><img height=2 src="../images/spacer.gif" width=5 border=0>Customer Login</a></td>');

document.writeln('              </tr>');

document.writeln('              <tr id="rat5" bgcolor="#0e3d58"> ');

document.writeln('                <td bgcolor="#0066CC"><a class=headerlinks target=_top ');

document.writeln('                  href="../company/resgister.htm"><img height=2 src="../images/spacer.gif" width=5 border=0>Register your product</a></td>');

document.writeln('              </tr>');

document.writeln('              <tr id="rat3"  bgcolor="#0e3d58"> ');

document.writeln('                <td bgcolor="#0066CC"><a class=headerlinks target=_top ');

document.writeln('                  href="../company/knowledgebase.htm"><img height=2 src="../images/spacer.gif" width=5 border=0>Online FAQ</a></td>');

document.writeln('              </tr>');

document.writeln('              <tr id="rat3"  bgcolor="#0e3d58"> ');

document.writeln('                <td bgcolor="#0066CC"><a class=headerlinks target=_top ');

document.writeln('                  href="../company/sec_elearning_course/intro.html"><img height=2 src="../images/spacer.gif" width=5 border=0>E-Learning</a></td>');

document.writeln('              </tr>');

document.writeln('            </table>');

document.writeln('          </td>');

document.writeln('        </tr>');

document.writeln('      </table>');

document.writeln('    </div>');

document.writeln('<div id="Rat" style="position:absolute; left:1px; top:1px; width:711px; height:19px; visibility:hidden" >');

document.writeln('</div>');

document.writeln('<div id=abt style="position:absolute; left:150px; top:0px; width:120px; height:150px; visibility:hidden" > ');

document.writeln('    <table border="0" cellpadding="4" cellspacing="1" bgcolor="#FFFFFF" onmouseout="menuOut(\'rollimg2\');" onmouseover="menuOver(\'rollimg2\');">');

document.writeln('      <tr id="ab1" bgcolor="#0e3d58"> ');

document.writeln('        <td bgcolor="#0066CC"><a class=headerlinks href="../company/aboutus.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>About ');

document.writeln('          AKCP</a></td>');

document.writeln('      </tr>');

document.writeln('      <tr id="ab1" bgcolor="#0e3d58"> ');

document.writeln('        <td bgcolor="#0066CC"><a class=headerlinks href="http://www.akcp.wordpress.com" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>AKCP ');

document.writeln('          Blog</a></td>');

document.writeln('      </tr>');

document.writeln('      <tr id="ab2" bgcolor="#0e3d58"> ');

document.writeln('        <td bgcolor="#0066CC"><a class=headerlinks href="../company/careers.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>Careers ');

document.writeln('          @ AKCP</a></td>');

document.writeln('      </tr>');

document.writeln('      <tr id="ab3" bgcolor="#0e3d58"> ');

document.writeln('        <td bgcolor="#0066CC"><a class=headerlinks href="../company/newsroom.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>AKCP ');

document.writeln('          News Room</a></td>');

document.writeln('      </tr>');

document.writeln('      <tr id="ab4" bgcolor="#0e3d58"> ');

document.writeln('        <td bgcolor="#0066CC"><a class=headerlinks href="../company/contact.htm" target=_top><img border=0 height=2 src="../images/spacer.gif" width=5>Contact ');

document.writeln('          AKCP </a></td>');

document.writeln('      </tr>');

document.writeln('     ');

document.writeln('    </table>');

document.writeln('  </div>');

document.writeln('  <map name="tabsMapMapMap">');

document.writeln('    <area shape="rect" coords="5,9,45,25" href="../index.htm">');

document.writeln('    <area shape="rect" coords="50,9,103,25" href="../company/products.htm" onMouseOut="btnTimer()" onMouseOver="showLayer(\'Ser\')">');

document.writeln('    <area shape="rect" coords="108,9,159,24" href="../company/partner.htm">');

document.writeln('    <area shape="rect" coords="165,8,216,24" href="../company/application.htm"  onMouseOut="btnTimer()" onMouseOver="showLayer(\'Res\')">');

document.writeln('    <area shape="rect" coords="219,8,267,25" href="../company/support.htm" onMouseOut="btnTimer()" onMouseOver="showLayer(\'spt\')">');

document.writeln('    <area shape="rect" coords="274,7,327,24" href="../company/aboutus.htm" onMouseOut="btnTimer()" onMouseOver="showLayer(\'abt\')">');

document.writeln('  </map>');

document.writeln('</div>');

document.writeln('<script type="text/javascript" language="javascript">');
document.writeln('var sc_project=1882004; ');
document.writeln('var sc_invisible=1; ');
document.writeln('var sc_partition=17; ');
document.writeln('var sc_security="ed14f171"; ');
document.writeln('</script>');
document.writeln('<script type="text/javascript" language="javascript" src="http://www.statcounter.com/counter/counter.js"></script><noscript><a href="http://www.statcounter.com/" target="_blank"><img  src="http://c18.statcounter.com/counter.php?sc_project=1882004&java=0&security=ed14f171&invisible=1" alt="counter customizable free hit" border="0"></a> </noscript>');

}


function printLeftProMenu()

{

document.writeln('<table width="100%" border="0" cellspacing="0" cellpadding="0">');

document.writeln('   <tr>');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> ');

document.writeln('         <a href="prodoverview.htm" class="mainlinks">Product Overview </a></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> ');

document.writeln('         <a href="products.htm" class="mainlinks">Product Catalogue </a></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> ');

document.writeln('         <a href="productmatrix.htm" class="mainlinks">Product Road Map </a></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr>');

document.writeln('      <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> ');

document.writeln('         <a href="sensorProbe2.htm" class="mainlinks">sensorProbe2™</a></td>');

document.writeln('   </tr>');

document.writeln('   <tr>');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td></tr>');

document.writeln('   <tr> ');

document.writeln('      <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> ');

document.writeln('         <a href="sensorProbe2DC.htm" class="mainlinks">sensorProbe2DC</a></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> ');

document.writeln('      <a href="sensorProbe8.htm" class="mainlinks">sensorProbe8™</a></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> ');

document.writeln('         <a href="sensorProbe8X20.htm" class="mainlinks">sensorProbe8-X20</a></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> ');

document.writeln('         <a href="sensorProbe8X60.htm" class="mainlinks">sensorProbe8-X60</a></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr>');

document.writeln('      <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> <a href="securityProbe_5e.htm" class="mainlinks">securityProbe 5E</a></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr>');

document.writeln('      <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> <a href="e_opto16.htm" class="mainlinks">Expansion Modules</a></td>');

document.writeln('   </tr>');

document.writeln('   <tr>');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr>');

document.writeln('      <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> <a href="securityProbeX20.htm" class="mainlinks">securityProbe-X20</a></td>');

document.writeln('   </tr>');

document.writeln('   <tr>');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr>');

document.writeln('      <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> <a href="securityProbeX60.htm" class="mainlinks">securityProbe-X60</a></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td height="20" class="priclisttxt">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> ');

document.writeln('         <a href="sc1.htm" class="mainlinks">SC1</a></td>');

document.writeln('   </tr>  ');

document.writeln('   <tr>');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> ');

document.writeln('         <a href="intelligentsensors.htm" class="mainlinks">Intelligent Sensors</a></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> ');

document.writeln('         <a href="powersupply.htm" class="mainlinks">Power Supplies</a></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> ');

document.writeln('         <a href="snm_overview.htm" class="mainlinks">Notification Wizard</a></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> ');

document.writeln('         <a href="nms.htm" class="mainlinks">NMS Integration</a></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> ');

document.writeln('         <a href="../company/mobile_access.htm" class="mainlinks">Mobile Access</a></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> ');

document.writeln('         <a href="maps_module1.htm" class="mainlinks">Mapping Module</a></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> ');

document.writeln('         <a href="reqdemo.htm" class="mainlinks">Online Demo </a></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> ');

document.writeln('         <a href="buy.htm" class="mainlinks">Online Purchase </a></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('   <td class="priclisttxt" height="20">  <img src="../images/menuarrw.gif" width="4" height="7" align="absmiddle"> ');

document.writeln('      <a href="pricelist.htm" class="mainlinks">Price List</a></td>');

document.writeln('   </tr>');

document.writeln('   <tr> ');

document.writeln('      <td bgcolor="#B3B2B2"><img src="../images/spacer.gif" width="1" height="1"></td>');

document.writeln('   </tr>');

document.writeln('</table>');
}

function print_int_rightmenu()
{
document.writeln('<table border="0" cellpadding="0" cellspacing="0">')
document.writeln('	<tr> ')
document.writeln('		<td height="20" class="hometxt"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="temperature.htm" class="hometext">Temperature Sensor</a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ') 
document.writeln('        <td height="20" class="hometxt"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('        <a href="temperature_waterresistant.htm" class="hometext">water resistant Version </a></td>')
document.writeln('	</tr>')                         
document.writeln('	<tr> ')
document.writeln('		<td height="20" class="hometxt"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="daisytemp.htm" class="hometext">daisyTemp Sensor</a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td height="20" class="hometxt"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="temp_humidity.htm" class="hometext">Single Port Temp/Hum</a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ') 
document.writeln('        <td height="20" class="hometxt"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('        <a href="temp_humid_waterresistant.htm" class="hometext">water resistant Version</a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td class="hometxt" height="20"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="thermocouple.htm" class="hometext">Thermocouple Sensor </a></td>')
document.writeln('	</tr>')
document.writeln('	<!--')
document.writeln('	<tr>')
document.writeln('		<td height="20" class="hometxt">&nbsp;<img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="sensorremote.htm" class="hometext">sensorRemote Temp/Hum</a></td>')
document.writeln('	</tr>')
document.writeln('	-->')
document.writeln('	<tr> ')
document.writeln('		<td height="20" class="hometxt"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="water.htm" class="hometext">Water Detector</a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td class="hometxt" height="20"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="security.htm" class="hometext">Security Sensor</a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td class="hometxt" height="20"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="airflow.htm" class="hometext">Airflow Sensor</a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td class="hometxt" height="20"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="dry_contact.htm" class="hometext">Dry Contact Sensor</a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td class="hometxt" height="20"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="dry_contact_10.htm" class="hometext">10 Dry Contact Inputs</a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td class="hometxt" height="20"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="io_digital8.htm" class="hometext">IO-digital8</a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td class="hometxt" height="20"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="ac_voltage.htm" class="hometext">AC Voltage Detector</a> </td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td class="hometxt" height="20"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="digital_voltmeter.htm" class="hometext">Digital Voltmeter </a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td height="20" class="hometxt"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="powermonitor.htm" class="hometext">Power Monitor Sensor</a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td class="hometxt" height="20"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="4_20_ma.htm" class="hometext">4-20 mAmp Converter</a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td class="hometxt" height="20"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="power_relay.htm" class="hometext">Sensor Controlled Relay</a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td class="hometxt" height="20"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="8port_relay.htm" class="hometext">8 Port Sensor Relay</a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td class="hometxt" height="20"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="smoke.htm" class="hometext">Smoke Detector</a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td class="hometxt" height="20"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="motion.htm" class="hometext">Motion Detector</a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td class="hometxt" height="20"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="umc.htm" class="hometext">Universal Mount Camera</a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td class="hometxt" height="20"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="siren_strobe_light.htm" class="hometext">Siren & Strobe Light </a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td class="hometxt" height="20"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="externalsensor.htm" class="hometext">External Sensor</a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td class="hometxt" height="20"> <img src="../images/spacer.gif" width="7" height="5"> ')
document.writeln('		<a href="externalsensor.htm" class="hometext">Integration</a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td class="hometxt" height="20"> <img src="../images/arrw2.gif" width="7" height="5"> ')
document.writeln('		<a href="../downloads/datasheet_sensor_summary.pdf" class="hometext">Download Datasheet</a></td>')
document.writeln('	</tr>')
document.writeln('	<tr> ')
document.writeln('		<td class="hometxt" height="20"> <img src="../images/spacer.gif" width="7" height="5"> ')
document.writeln('		<a href="../downloads/datasheet_sensor_summary.pdf" class="hometext">of Sensor Summary</a><img src="../images/acrobatlogo.gif" width="16" height="16"></td>')
document.writeln('	</tr>')
document.writeln('</table>')

}

