
<!--

<!-- Begin
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 i=0;

// Change the position of the ticker
 var top_pos = 52;
 var left_pos = 603;

// Change the speed of the ticker (in milliseconds)
 var time_length = 1500;

 var div_name = "qiksearch";

// Enter messages for the ticker
 var ticker_msg = new Array(
     "Email Integration",
     "WWW Integration",
     "Fax Integration",
	 "Computer Telephony Integration",
     "Document Storage / Filing Cabinets",
	 "Template Documents",
     "Data Access",
     "Document Promotion",
     "Newsgroups",
	 "Notepads",
	 "'My Notepad'",
	 "Drill Down and Around",
     "Activity Recording",
     "Comprehensive Security",
     "Data Import and Export",
	 "Multiple Periods",
     "Multiple Currency",
	 "Multiple Companies",
	 "Database Modifications",
	 "Standard Reports",
     "Vistas" );

// Enter the URL's for the above messages
 var ticker_url = new Array(
     "http://www.defactosoftware.com/swf_system_features.html#eintegration",
     "http://www.defactosoftware.com/swf_system_features.html#wintegration",
	 "http://www.defactosoftware.com/swf_system_features.html#fintegration",
     "http://www.defactosoftware.com/swf_system_features.html#ctintegration",
	 "http://www.defactosoftware.com/swf_system_features.html#dstorage",
	 "http://www.defactosoftware.com/swf_system_features.html#tdocuments",
     "http://www.defactosoftware.com/swf_system_features.html#daccess",
     "http://www.defactosoftware.com/swf_system_features.html#dproduction",
	 "http://www.defactosoftware.com/swf_system_features.html#newsgroups",
     "http://www.defactosoftware.com/swf_system_features.html#newsgroups",
     "http://www.defactosoftware.com/swf_system_features.html#mnotepad",
     "http://www.defactosoftware.com/swf_system_features2.html#ddandaround",
	 "http://www.defactosoftware.com/swf_system_features2.html#arecording",
     "http://www.defactosoftware.com/swf_system_features2.html#csecurity",
     "http://www.defactosoftware.com/swf_system_features2.html#deandimport",
     "http://www.defactosoftware.com/swf_system_features2.html#mperiods",
	 "http://www.defactosoftware.com/swf_system_features2.html#mcurrency",
	 "http://www.defactosoftware.com/swf_system_features2.html#mcompanies",
     "http://www.defactosoftware.com/swf_system_features2.html#dmodifications",
	 "http://www.defactosoftware.com/swf_system_features2.html#sreports",
     "http://www.defactosoftware.com/swf_system_features2.html#vistas" );

var ticker_len = ticker_msg.length;
for(var l=0; l<ticker_len; l++)
{
document.write('<div id="' + div_name + l + '" style="position:absolute; visibility:hidden; top:' + top_pos + '; left:' + left_pos + '">' + '<table bgcolor="#000000" cellspacing="0" cellpadding="1" width="165"><tr><td><table width="100%" border="0" bgcolor="#FFFFFF"><tr><td><center><font size="1" face="Verdana, Arial, Helvetica, sans-serif"><a href="' + ticker_url[l] + '" class="tick">' + ticker_msg[l] + '</center></a></font></td>');
document.write('</tr></table></td></tr></table>' + '</div>');
}
if (NS4 || IE4) {
 if (navigator.appName == "Netscape") {
 layerStyleRef="layer.";
 layerRef="document.layers";
 styleSwitch="";
 }else{
 layerStyleRef="layer.style.";
 layerRef="document.all";
 styleSwitch=".style";
 }
}
//SCROLL
function tick(){
if (NS4 || IE4) {
 if(i<ticker_len)
 {
  if(i==0)
  {
   eval(layerRef+'["'+div_name+(ticker_len-1)+'"]'+
   styleSwitch+'.visibility="hidden"');
  }
  if(i>0)
  {
   eval(layerRef+'["'+div_name+(i-1)+'"]'+
   styleSwitch+'.visibility="hidden"');
  }
 eval(layerRef+'["'+div_name+i+'"]'+
 styleSwitch+'.visibility="visible"');
 }
 if(i<ticker_len-1)
 {
 i++;
 }
 else
 {
 i=0;
 }
 setTimeout("tick()",time_length);
 }
}
tick();

//  End -->
//-->