// function for open in a new window for images
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// footer JavaScript Document

function footerJS(){
var str='';
str+='<table width="100%" height="100%" border="0" cellspacing="0" cellpadding="3">';
str+='  <tr>';
str+='    <td><div align="center"><a href="index.html">Home<\/a> | <a href="company.html">Company<\/a> | <a href="TechnologySolutions.html">Technology Solutions<\/a> | <a href="consultingservices.html">Consulting Services<\/a> | <a href="industries.html">Industries<\/a> | <a href="successstories.html">Success Stories<\/a> | <a href="news.html">News<\/a> | <a href="careers.html">Careers<\/a> | <a href="locations.html">Locations<\/a><br>';
str+='<\/div><\/td>';
str+='  <\/tr>';
str+='  <tr>';
str+='    <td><div align="center">Copyright &copy; 2008 Zolon Tech Solutions Inc. All Rights Reserved. <a href="privacypolicy.html">Privacy Policy<\/a> | <a href="termsofuse.html">Terms of use<\/a><\/div><\/td>';
str+='  <\/tr>';
str+='<\/table>';
document.write(str);
}


// Munu JavaScript Document

function menuJS(){
var str='';
str+='<table width="757" height="30"  border="0" cellpadding="0" cellspacing="0" align="center">';
str+='                  <tr>';
str+='                    <td height="13" width="21">&nbsp;<\/td>';
str+='                    <td width="9" align="left"><img src="images\/but.gif" width="5" height="5"><\/td>';
str+='                    <td width="47" align="left"><a href="index.html" id="mnu">HOME<\/a> <\/td>';
str+='                    <td width="9" align="left"><img src="images\/but.gif" width="5" height="5"><\/td>';
str+='                    <td width="71" align="center"><div align="left"><a href="company.html" id="mnu">COMPANY<\/a><\/div><\/td>';
str+='                    <td width="9" align="left"><img src="images\/but.gif" width="5" height="5"><\/td>';
str+='                    <td width="155" align="left"><div align="left"><a href="technologysolutions.html" id="mnu">TECHNOLOGY SOLUTIONS<\/a><\/div><\/td>';
str+='                    <td width="9" align="left"><img src="images\/but.gif" width="5" height="5"><\/td>';
str+='                    <td width="144" align="left"><a href="consultingservices.html" id="mnu">CONSULTING SERVICES<\/a><\/td>';
str+='                    <td width="9" align="left"><img src="images\/but.gif" width="5" height="5"><\/td>';
str+='                    <td width="86" align="left"><a href="industries.html" id="mnu">INDUSTRIES<\/a><\/td>';
str+='                    <td width="9" align="left"><img src="images\/but.gif" width="5" height="5"><\/td>';
str+='                    <td width="118" align="left"><a href="successstories.html" id="mnu">SUCCESS STORIES<\/a><\/td>';
str+='                    <td width="9" align="left"><img src="images\/but.gif" width="5" height="5"><\/td>';
str+='                    <td align="left"><a href="news.html" id="mnu">NEWS<\/a><\/td>';
str+='                    <td width="21"><\/td>';
str+='                  <\/tr>';
str+='                <\/table>';

document.write(str);
}

// Hit Counter Scripts

function nameDefined(ckie,nme)
{
   var splitValues
   var i
   for (i=0;i<ckie.length;++i)
   {
      splitValues=ckie[i].split("=")
      if (splitValues[0]==nme) return true
   }
   return false
}

function delBlanks(strng)
{
   var result=""
   var i
   var chrn
   for (i=0;i<strng.length;++i) {
      chrn=strng.charAt(i)
      if (chrn!=" ") result += chrn
   }
   return result
}
function getCookieValue(ckie,nme)
{
   var splitValues
   var i
   for(i=0;i<ckie.length;++i) {
      splitValues=ckie[i].split("=")
      if(splitValues[0]==nme) return splitValues[1]
   }
   return ""
}
function insertCounter() {
 readCookie()
 displayCounter()
}
 function displayCounter() {
 document.write('<span style="font-color=#ffffff">')
 //document.write("You've visited this page ")
 if(counter==1) document.write("1")
 else document.write(counter)
 document.writeln('</span>')
 }
function readCookie() {
 var cookie=document.cookie
 counter=0
 var chkdCookie=delBlanks(cookie)  //are on the client computer
 var nvpair=chkdCookie.split(";")
 if(nameDefined(nvpair,"pageCount"))
 counter=parseInt(getCookieValue(nvpair,"pageCount"))
 ++counter
 var futdate = new Date()
 var expdate = futdate.getTime()
 expdate += 3600000 * 24 *30  //expires in 1 hour
 futdate.setTime(expdate)

 var newCookie="pageCount="+counter
 newCookie += "; expires=" + futdate.toGMTString()
 window.document.cookie=newCookie
}