//--------------------------------------------------------------------------------------------------------------------------------------------
// Today's Date
//--------------------------------------------------------------------------------------------------------------------------------------------

var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900

//--------------------------------------------------------------------------------------------------------------------------------------------
// Drop Down Menu
//--------------------------------------------------------------------------------------------------------------------------------------------

function openDir( formLanguage ) { 
	var newIndex = formLanguage.selectLanguage.selectedIndex; 
	cururl = formLanguage.selectLanguage.options[ newIndex ].value; 
	window.location.assign( cururl ); 
} 

//--------------------------------------------------------------------------------------------------------------------------------------------
// Navigation Menu
//--------------------------------------------------------------------------------------------------------------------------------------------

//Drop Down Menu Code
var disappeardelay=250  //menu disappear speed onMouseout (in miliseconds)
var enableanchorlink=0 //Enable or disable the anchor link when clicked on? (1=e, 0=d)
var hidemenu_onclick=1 //hide menu when user clicks within menu? (1=yes, 0=no)

/////No further editting needed

var ie5=document.all
var ns6=document.getElementById&&!document.all

function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}

function showhide(obj, e, block, none){
if (ie5||ns6)
dropmenuobj.style.left=dropmenuobj.style.top=-500
if (e.type=="click" && obj.display==none || e.type=="mouseover")
obj.display=block
else if (e.type=="click")
obj.display=none
}

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=ie5 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var topedge=ie5 && !window.opera? iecompattest().scrollTop : window.pageYOffset
var windowedge=ie5 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
}
}
return edgeoffset
}

function dropdownmenu(obj, e, dropmenuID){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
if (typeof dropmenuobj!="undefined") //hide previous menu
dropmenuobj.style.display="none"
clearhidemenu()
if (ie5||ns6){
obj.onmouseout=delayhidemenu
dropmenuobj=document.getElementById(dropmenuID)
if (hidemenu_onclick) dropmenuobj.onclick=function(){dropmenuobj.style.display='none'}
dropmenuobj.onmouseover=clearhidemenu
dropmenuobj.onmouseout=ie5? function(){ dynamichide(event)} : function(event){ dynamichide(event)}
showhide(dropmenuobj.style, e, "block", "none")
dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
}
return clickreturnvalue()
}

function clickreturnvalue(){
if ((ie5||ns6) && !enableanchorlink) return false
else return true
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}

function dynamichide(e){
if (ie5&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}

function delayhidemenu(){
delayhide=setTimeout("dropmenuobj.style.display='none'",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

//--------------------------------------------------------------------------------------------------------------------------------------------
// Generate Navigation Menu
//--------------------------------------------------------------------------------------------------------------------------------------------

document.write('<div id="header"> <a href="http://www.kofax.com/"><img src="http://www.kofax.com/images/logo-kofax.png" alt="Kofax" align="left" /></a> <div id="search"> <form name="GoogleSearch" id="searchbox_004805754351123095197:y22bdtkjvyy" action="http://www.kofax.com/search-results.asp"><input type="hidden" name="cx" value="004805754351123095197:y22bdtkjvyy" /><input type="hidden" name="cof" value="FORID:11;NB:1" /><input name="q"type="text" value="Search" onfocus="if(this.value==\'Search\') this.value=\'\';" onblur="if(this.value==\'\') this.value=\'Search\';" /><a href="javascript:document.GoogleSearch.submit();">&nbsp;</a></form> </div> <div id="divider"></div> <div id="language"> <form name="formLanguage"> <select id="selectLanguage" name="selectLanguage" size="1" onChange="openDir( this.form )"> <option value="#">Language</option> <option value="http://www.kofax.com/de/?lng=de">Deutsch</option> <option value="http://www.kofax.com/?lng=en">English</option> <option value="http://www.kofax.com/es/?lng=es">Espa&#241;ol</option> <option value="http://www.kofax.com/fr/?lng=fr">Fran&#231;ais</option> <option value="http://www.kofax.com/it/?lng=it">Italiano</option> <option value="http://www.kofax.com/jp/">&#26085;&#26412;&#35486;</option> </select> </form> </div> </div> <div id="nav"> <ul> <li><a href="http://www.kofax.com/products.asp" onMouseover="dropdownmenu(this, event, \'nav-products\')" class="left">Software</a></li> <li><a href="http://www.kofax.com/solutions.asp" onMouseover="dropdownmenu(this, event, \'nav-solutions\')">Solutions</a></li> <li><a href="http://www.kofax.com/services.asp" onMouseover="dropdownmenu(this, event, \'nav-services\')">Services</a></li> <li><a href="http://www.kofax.com/support/" onMouseover="dropdownmenu(this, event, \'nav-support\')">Support</a></li> <li><a href="http://www.kofax.com/distribution.asp" onMouseover="dropdownmenu(this, event, \'nav-distribution\')">Distribution</a></li> <li><a href="http://www.kofax.com/partners.asp" onMouseover="dropdownmenu(this, event, \'nav-partners\')">Partners</a></li> <li><a href="http://www.kofax.com/ir/" onMouseover="dropdownmenu(this, event, \'nav-investors\')">Investors</a></li> <li><a href="http://www.kofax.com/about.asp" onMouseover="dropdownmenu(this, event, \'nav-about\')">About Kofax</a></li> </ul> </div> <div id="nav-products" class="nav-dropdown" style="margin-left:5px;"> <a href="http://www.kofax.com/products.asp">Overview</a> <a href="http://www.kofax.com/capture/">Kofax Capture</a> <a href="http://www.kofax.com/transformation/">Kofax Transformation Modules</a> <a href="http://www.kofax.com/document-exchange/">Kofax Front Office Server</a> <a href="http://www.kofax.com/communication/">Kofax Communication Server</a> <a href="http://www.kofax.com/etransactions/">Kofax e-Transactions</a> <a href="http://www.kofax.com/monitor/">Kofax Monitor</a> <a href="http://www.kofax.com/express/">Kofax Express</a> <a href="http://www.kofax.com/desktop/">Kofax Desktop</a> <a href="http://www.kofax.com/vrs/">VirtualReScan (VRS)</a> <a href="http://www.kofax.com/markview/">MarkView Financial Suite</a> </div> <div id="nav-solutions" class="nav-dropdown"> <a href="http://www.kofax.com/solutions.asp">Overview</a> <a href="http://www.kofax.com/solutions/case-studies.asp">Case Studies</a> <a href="http://www.kofax.com/solutions/white-papers.asp">White Papers</a> <a href="http://www.kofax.com/solutions/research-reports.asp">Research Reports</a> </div> <div id="nav-services" class="nav-dropdown"> <a href="http://www.kofax.com/services.asp">Overview</a> <a href="http://www.kofax.com/professional-services/">Professional Services</a> <a href="http://www.kofax.com/training/">Training</a> <a href="http://www.kofax.com/maintenance/">Maintenance</a> </div> <div id="nav-support" class="nav-dropdown"> <a href="http://www.kofax.com/support/index.asp">Overview</a> <a href="http://www.kofax.com/support/product_list.asp">By Product</a> <a href="http://www.kofax.com/support/docs.asp">Documentation</a> <a href="http://www.kofax.com/support/downloads.asp">Downloads</a> <a href="http://www.kofax.com/support/support_tools.asp">Tools</a> <a href="http://www.kofax.com/support/contact.asp">Support Options</a> </div> <div id="nav-partners" class="nav-dropdown"> <a href="http://www.kofax.com/partners.asp">Overview</a> <a href="http://www.kofax.com/partners/technology.asp">Technology Alliance</a> <a href="http://www.kofax.com/partners/solution-provider-program.asp">Solution Provider Program</a> <a href="http://www.kofax.com/partners/portal.asp">Partner Portal</a> </div> <div id="nav-distribution" class="nav-dropdown"> <a href="http://www.kofax.com/distribution.asp">Overview</a> <a href="http://www.kofax.com/distribution/products.asp">Products</a> <a href="http://www.kofax.com/distribution/maintenance.asp">Hardware Services</a> <a href="http://www.kofax.com/distribution/offices.asp">Offices</a> <a href="http://www.kofax.com/distribution/partner-programs.asp">Partner Programs</a> </div> <div id="nav-investors" class="nav-dropdown"> <a href="http://www.kofax.com/ir/">Overview</a> <a href="http://www.kofax.com/ir/fundamentals.asp">Financial Information</a> <a href="http://www.kofax.com/ir/corporate-governance.asp">Corporate Responsibility</a> <a href="http://www.kofax.com/ir/share-price.asp">Share Information</a> <a href="http://www.kofax.com/ir/financial-calendar.asp">Shareholder Services</a> <a href="http://www.kofax.com/ir/regulatory-announcements/">Regulatory Announcements</a> <a href="http://www.kofax.com/ir/contact-us.asp">News Service</a> </div> <div id="nav-about" class="nav-dropdown"> <a href="http://www.kofax.com/about.asp">Overview</a> <a href="http://www.kofax.com/news/">News</a> <a href="http://www.kofax.com/events/">Events and Webinars</a> <a href="https://hostedjobs.openhire.com/epostings/jobs/submit.cfm?company_id=15973">Careers</a> <a href="http://www.kofax.com/newsletter/">Newsletter</a> <a href="http://extcorp.kofax.com">Intranet</a> <a href="http://www.kofax.com/glossary/">Glossary</a> <a href="http://www.kofax.com/contact/">Contact Us</a> </div>');
