<?xml version="1.0" encoding="utf-8"?>
<mi:data>
<td class="navigation-left">
<table cellpadding="0" cellspacing="0">
<tr>
	<td class="padded3px bold nav-link"><a href="../solutions/solutions.php">Solutions</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="../solutions/oee.php">OEE &amp; Downtime</a></td>
</tr>
<tr>
	<td class="entity-navigation-left"><img src="" width="100%" height="1px" /></td>
</tr>
<tr>
	<td class="padded3px bold nav-link"><a href="../markets/markets.php">Vertical Markets</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="../markets/automotive.php">Automotive</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="../markets/hvac.php">Building Control</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="../markets/fda.php">Food &amp; Pharma</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="../markets/machine.php">Machine Builders</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="../markets/oilgas.php">Oil &amp; Gas</a></td>
</tr>
<tr>
	<td class="entity-navigation-left"><img src="" width="100%" height="1px" /></td>
</tr>
<tr>
	<td class="padded3px bold nav-link"><a href="../products/products.php?product=allproducts">Product Lines</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="../products/products.php?product=genesis32">GENESIS32</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="../products/products.php?product=genesis64">GENESIS64</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="../products/products.php?product=webhmi">WebHMI</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="../products/products.php?product=pocketgenesis">PocketGENESIS</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="../products/products.php?product=bizviz">BizViz</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="../products/products.php?product=opctoolworx">OPC ToolWorX</a></td>
</tr>
<tr>
	<td class="entity-navigation-left"><img src="" width="100%" height="1px" /></td>
</tr>
<tr>
	<td class="padded3px bold nav-link"><a href="../news/newsandinfo.php">Recent News</a></td>
</tr>
</table>

<table cellpadding="5px" cellspacing="5px">
<tr>

<!-- SCROLL TABLE -->
<td BGCOLOR="#FFFFFF" BACKGROUND="../images/scroll_bground.gif">
<script language="JavaScript">
  // Scrollers width here (in pixels)
	var scrollerwidth="140px"

	// Scrollers height here
	var scrollerheight="100px"

	// Scrollers speed here (larger is faster 1-10)
	var scrollerspeed=1

	//Scroller slo-down flag
	var scrolldelay=0
	var delayrate=2   //High value = slower

	// Scrollers content goes here! Keep all of the message on the same line!

	var sz = new Array();
	<mi:execute
			type="query"
			query="../company/sql/news-list"
			parameters="ORDER=ORDER BY LASTUPDATE DESC;LIMIT=LIMIT 0,5;">

	sz[sz.length] = new Array("{TITLE}");

	</mi:execute>
<![CDATA[


	var scrollercontent='<table><tr><td class="heading2">What\'s new?</td></tr><tr><td></td</tr>';
	for(i=0; i<sz.length; i++)
	{
		scrollercontent = scrollercontent + '<tr><td class="nav-link"><img src="../images/arrow.gif"/><a href="../news/newsandinfo.php">' + sz[i][0] + '</a><p></p></td></tr><tr><td></td></tr><tr><td></td></tr>';
	}

	var pauseit=1

	// Change nothing below!

	scrollerspeed=(document.all)? scrollerspeed : Math.max(1, scrollerspeed-1) //slow speed down by 1 for NS
	var copyspeed=scrollerspeed
	var iedom=document.all||document.getElementById
	var actualheight=''
	var cross_scroller, ns_scroller
	var pausespeed=(pauseit==0)? copyspeed: 0


	//***************************************************************************
	function populate(){
	if (iedom){
		cross_scroller=document.getElementById? document.getElementById("iescroller") : document.all.iescroller
		cross_scroller.style.top=parseInt(scrollerheight)+8+"px"
		cross_scroller.innerHTML=scrollercontent
		actualheight=cross_scroller.offsetHeight
	}
	else if (document.layers){
			ns_scroller=document.ns_scroller.document.ns_scroller2
			ns_scroller.top=parseInt(scrollerheight)+8
			ns_scroller.document.write(scrollercontent)
			ns_scroller.document.close()
			actualheight=ns_scroller.document.height
		}
	lefttime=setInterval("scrollscroller()",20)
	}//end of poulate ***********************************************************

	window.onload = populate;

//*****************************************************************************
	function scrollscroller(){

				if (iedom){
					if (parseInt(cross_scroller.style.top)>(actualheight*(-1)+8)){
						if (scrolldelay==delayrate){
							cross_scroller.style.top=parseInt(cross_scroller.style.top)-copyspeed+"px"
							scrolldelay=0
						}
						else{
							scrolldelay++
						}
					}
					else{
						cross_scroller.style.top=parseInt(scrollerheight)+8+"px"
					}
				}
				else if (document.layers){
						if (ns_scroller.top>(actualheight*(-1)+8))
							if (scrolldelay==delayrate){
								ns_scroller.top-=copyspeed
								scrolldelay=0
							}
							else{
								scrolldelay++
							}
						else
							ns_scroller.top=parseInt(scrollerheight)+8
				}

	}//end of scrollscroller ****************************************************

	if (iedom||document.layers){
		with (document){
			if (iedom){
				write('<div style="position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=scrollerspeed">')
				write('<div id="iescroller" style="position:absolute;left:0px;top:0px;width:100%;">')
				write('</div></div>')
			}
			else if (document.layers){
				write('<ilayer width='+scrollerwidth+' height='+scrollerheight+' name="ns_scroller">')
				write('<layer name="ns_scroller2" width='+scrollerwidth+' height='+scrollerheight+' left="0" top="0" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=scrollerspeed"></layer>')
				write('</ilayer>')
			}
		}
	}

]]>

</script></td></tr></table>
<table cellpadding="0" cellspacing="0">
<tr>
	<td class="entity-navigation-left"><img src="" width="100%" height="1px" /></td>
</tr>
<tr>
	<td class="padded3px bold nav-link"><a href="../company/company.php">Company</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="http://www.iconics-uk.com/forum/forum.php">Forum</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="../sales/partners.php">Sales Channels</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="http://www.iconics-uk.com/user/useraccount.php">Your Account</a></td>
</tr>
<tr>
	<td class="entity-navigation-left"><img src="" width="100%" height="1px" /></td>
</tr>

<tr>
	<td class="padded3px bold nav-link">Sales</td>
</tr>
<tr>
	<td class="common nav-link"><a href="../support/contactsupport.php">Contact Sales</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="../home/requestcd.php">Order A Free CD</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="../home/requestsalesvisit.php">On-site Demos</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="../success/successstories.php">Success Stories</a></td>
</tr>
<tr>
	<td class="entity-navigation-left"><img src="" width="100%" height="1px" /></td>
</tr>
<tr>
	<td class="padded3px bold nav-link"><a href="../support/support.php">Technical Support</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="../support/training.php">Training</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="http://www.iconics-uk.com/kb/kb.php">Knowledge Base</a></td>
</tr>
<tr>
	<td class="common nav-link"><a href="http://www.iconics-uk.com/support/support-search.php">Search Support</a></td>
</tr>
<tr>
	<td height="10px"></td>
</tr>
<!--<tr>
	<td class="padded3px nav-link"><a href="../support/downloads.php">Downloads</a></td>
</tr> -->

<tr>
	<td class="common" align="center" valign="middle"><a target="_blank" href="http://opcfoundation.org/"><img src="../images/Logos/logo-OPCMember.gif" border="0" /></a></td>
</tr>
<tr>
	<td height="5px"></td>
</tr>
<tr>
	<td class="common" align="center" valign="middle"><a target="_blank" href="http://www.microsoft.com/"><img src="../images/Logos/logo-GoldP.gif" border="0" /></a></td>
</tr>
</table>
</td>
</mi:data>
