<!-- // START MENU CODE

// NOTE: If you use a ' add a slash before it like this \'

// MENU VER 2.0 IE 7.0 COMPATIBLE
var alldivs=new Array();
var pageno=0;

function validateQuote() {
 var f=document.forms["quote"];
 if (f["KPMEmail"].value!=f["KPMEmail2"].value) {
    alert("Email address and Confirming Email Address cannot be different");
    return;
 }
 if (f["KPMEmail"].value.length < 4) {
    alert("Email address not filled");
    return;
 }
 f.submit(true);
}

function text1(i) {
if (i==0) {
   for (j=1;j<12;j++) {
      alldivs[j]=document.getElementById("p"+j).innerHTML;
      document.getElementById("p"+j).innerHTML="";
      i=1;
   }
}
document.getElementById("s1").innerHTML=alldivs[i];
pageno=i;
setArrows(i);
}
function setArrows(i) {
   var toPage="Page "+(i+1);
   var bckPage="Page "+(i-1);
   if (i-1<1) bckPage="";
   if (i+1>LASTPAGE) toPage="";
   document.getElementById("ww1").innerHTML=bckPage+" &lt;&lt; ";
   document.getElementById("ww2").innerHTML=" &gt;&gt; "+toPage;
}
function next() {
  pageno++;
  if (pageno>11) pageno=11;
  text1(pageno);
}
function last() {
  pageno--;
  if (pageno<1) pageno=1;
  text1(pageno);
}
StartMenu()


// MENU OPTIONS - you will find more options in the corporatestyle.css

MFL		= 60; 					// MENU DISTANCE FROM EDGE
MFT		= 0; 					// MENU DISTANCE FROM TOP
ALIGN		= "left"				// MENU LEFT OR RIGHT
TMH		= 22;					// TOP MENU HEIGHT
TMFS		= "8";					// TOP MENU FONT SIZE
TMFW		= "bold";				// TOP MENU FONT WEIGHT bold/normal
TMFF		= " arial, verdana, helvetica, sans";	// TOP MENU FONT FACE
TMC		= "FFFFFF";				// TOP MENU OFF FONT COLOR
TMBC		= "333333";				// TOP MENU OFF BACKGROUND COLOR
TMBI		= "";			// TOP MENU OFF BACKGROUND IMAGE
TMHC		= "000000";				// TOP MENU HOVER TEXT COLOR
TMHBC		= "C0C0C0";				// TOP MENU HOVER BACKGROUND COLOR
TMHBI		= "";			// TOP MENU HOVER BACKGROUND IMAGE
MO		= TMH-2;				// Y MENU OVERLAP CHANGE NUMBER VALUE
SUBshift	= 0;					// SHIFT SUBMENU RIGHT
LASTPAGE=11;


// START SUBMENU OPTIONS - you will find more options in the corporatestyle.css


SMH		= 22;					// SUB MENU HEIGHT
SMFS		= "9";					// SUB MENU FONT SIZE
SMFW		= "normal";				// SUB MENU FONT WEIGHT bold/normal
SMFF		= "arial,MS Sans Serif,sans-serif";	// SUB MENU FONT FACE
SMC		= "000000";				// SUB MENU OFF FONT COLOR
SMBC		= "FFFFFF";				// SUB MENU OFF BACKGROUND COLOR
SMHC		= "FFFFFF";				// SUB MENU HOVER TEXT COLOR
SMHBC		= "999999";				// SUB MENU HOVER BACKGROUND COLOR


SubMenu()




// START MENU NUMBER 1 COPY AND PASTE A GROUP TO ADD A NEW TOP LEVEL SEE NOTE BELOW


Top_Width[0]=125; Sub_Menu_Width[0]=125;m[0]='Company';
n[0]="javascript:text1(1)";st[0]="";s[0]=""+l+"javascript:text1(2)"+r+" About us "+c;

Top_Width[1]=125; Sub_Menu_Width[1]=125;m[1]='Our editors';
n[1]="javascript:text1(3)";st[1]="";s[1]=""+l+"javascript:text1(4)"+r+" Our Service "+c;

Top_Width[2]=125; Sub_Menu_Width[2]=125;m[2]='Pricing';
n[2]="javascript:text1(5)";st[2]="";s[2]=""+l+"javascript:text1(6)"+r+" Quotation "+c

Top_Width[3]=125; Sub_Menu_Width[3]=125;m[3]='Contact us';
n[3]="javascript:text1(7)";st[3]="";s[3]=""+l+"javascript:text1(8)"+r+" Security "+c+
l+"javascript:text1(9)"+r+" Quality "+c

strww1="<div id=\"ww1\"> &lt;&lt; </div>";
strww2="<div id=\"ww2\"> &gt;&gt; </div>";

Top_Width[4]=125;Sub_Menu_Width[4]=125;m[4]='Links';n[4]="javascript:text1(10)";
st[4]="";s[4]=""+l+"javascript:text1(11)"+r+" Disclaimer "+c

Top_Width[5]=80;Sub_Menu_Width[5]=125;m[5]=strww1;n[5]="javascript:last()";

Top_Width[6]=80;Sub_Menu_Width[6]=125;m[6]=strww2;n[6]="javascript:next()";



// IF YOU ADD ANOTHER TOP LEVEL MENU YOU MUST ADD TO THE BOTTOM OF THIS LIST

// ----------------------------------------------------------------
// YOU DO NOT NEED TO EDIT BELOW THIS LINE 2006 Allwebco Design
// ----------------------------------------------------------------


MENU=m.length

var lastTop=0;
for (i=0; i < MENU; i++){
ADJ[i]=(lastTop)+MFL;
lastTop=lastTop+Top_Width[i];
// START WRITING TOP LEVEL MENUS
var s1="<div style='position:absolute;"+ALIGN+":"+ADJ[i]+";top:"+MFT+";width:"+Top_Width[i]+"' onmouseover='o["+i+"].ShowMenu()' onmouseout='o["+i+"].HideMenu()'>";
document.write(s1)
var s2="<a class='menu_TOP' style='height:"+TMH+"; color:#"+TMC+"; background-image: url("+TMBI+"); background-color:#"+TMBC+"; font-size:"+TMFS+"pt; font-weight:"+TMFW+"; font-family: "+TMFF+"; "+spn+"' onmouseover=\"this.style.backgroundColor='#"+TMHBC+"';this.style.color='"+TMHC+"';this.style.backgroundImage='URL("+TMHBI+")'\"  onmouseout=\"this.style.backgroundColor='#"+TMBC+"';this.style.color='"+TMC+"';this.style.backgroundImage='URL("+TMBI+")'\" href='"+n[i]+"'>"+m[i]+"</a></div>";
document.write(s2)
}


for (i=0; i < MENU-2; i++){

// START WRITING SUB MENUS
var s1="<div id='SUB"+i+"' class='menu_DIV' style='position: absolute; "+ALIGN+":"+(ADJ[i]+SUBshift)+";top:"+(MFT+MO)+";width:"+Sub_Menu_Width[i]+";background-color:#"+SMBC+";' onmouseover='o["+i+"].ShowMenu()' onmouseout='o["+i+"].HideMenu()'>"+s[i]+"</div>";
document.write(s1);
}



function StartMenu()
{

var D6=window,Y7=document;
function DETECT()
{
this.ver=navigator.appVersion;
this.agent=navigator.userAgent;
this.dom=Y7.getElementById?1:0;
this.opera5=this.agent.indexOf("Opera 5")>-1;
this.ie4=(Y7.all && !this.dom && !this.opera5)?1:0;
this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom && !this.opera5)?1:0;
this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom && !this.opera5)?1:0;
this.ie7=(this.ver.indexOf("MSIE 7")>-1 && this.dom && !this.opera5)?1:0;
this.ie=this.ie4||this.ie5||this.ie6||this.ie7;
this.mac=this.agent.indexOf("Mac")>-1;
this.ns6=(this.dom && parseInt(this.ver)>=5)?1:0;
this.ns4=(Y7.layers && !this.dom)?1:0;
this.BWD=(this.ie6||this.ie5||this.ie4||this.ns4||this.ns6||this.opera5);
return this
}
BWD=new DETECT();z=0;b=0;
spn="";
if(BWD.opera5||BWD.ns6)
{
b=2
};
if(BWD.ie)
{
spn=" width: 100%"
}else{
z=6
}

} 


function SubMenu()
{
var s1="<div width='100%' style='height:"+TMH+";position:absolute;top:"+MFT+";width:100%;background-image: url("+TMBI+"); background-color:#"+TMBC+";z-level:-2'></div>";
document.write(s1)


l="<a class='menu_SUB' style='height:"+SMH+"; color:#"+SMC+"; background-color:#"+SMBC+"; font-size:"+SMFS+"pt; font-weight:"+SMFW+"; font-family: "+SMFF+";"+spn+"' onmouseover=\"this.style.backgroundColor='#"+SMHBC+"';this.style.color='"+SMHC+"'\"  onmouseout=\"this.style.backgroundColor='#"+SMBC+"';this.style.color='"+SMC+"'\" href='";
r="'>";
c="</a>";
m=new Array();n=new Array();s=new Array();Sub_Menu_Width=new Array();su=new Array();st=new Array();Top_Width=new Array();ADJ=new Array()
}


function lib_obj(obj,nest){
nest=(!nest) ? "":'document.'+nest+'.';
this.evnt=BWD.dom? document.getElementById(obj):BWD.ie4?document.all[obj]:BWD.ns4?eval(nest+"document.layers." +obj):0;
this.css=BWD.dom||BWD.ie4?this.evnt.style:this.evnt;
this.ref=BWD.dom||BWD.ie4?document:this.css.document;
this.x=parseInt(this.css.top)||this.css.pixeltop||this.evnt.offsettop||0;
this.y=parseInt(this.css.left)||this.css.pixelleft||this.evnt.offsetleft||0;
return this
}
function lib_doc_size(){
this.x=0;
this.x2=BWD.ie && document.body.offsetWidth-20||innerWidth||0;
this.y=0;
this.y2=BWD.ie && document.body.offsetHeight-5||innerHeight||0;
this.x50=this.x2/2;
this.y50=this.y2/2;
return this;
}
lib_obj.prototype.ShowMenu = function(){this.css.visibility="visible"}
lib_obj.prototype.HideMenu = function(){this.css.visibility="hidden"}
function libinit(){
page=new lib_doc_size();
o=new Array();
for (i=0; i < MENU; i++){o[i]=new lib_obj('SUB'+i);o[i].HideMenu()}
}
function testalert(i) {
alert(i);
}
libinit()

// END MENU CODE -->
