		
<html dir="ltr">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Video Processing &amp; Multimedia Processing - Mobile, TV, Web, IMS/NGN</title>
<meta name="description" content="Mobile, TV, Web, IMS / NGN video and voice processing – transcoding, encoding, enrichment, optimization, streaming and more
">
<meta name="keywords" content="">
<link rel="stylesheet" href="include/general.css" type="text/css">
		<link rel="stylesheet" href="include/active.css" type="text/css"/>
		
		<meta name="robots" content="index, follow"/>
		
		<script type="text/javascript" src="javascript/jquery-1.3.2.min.js"></script>
		<script type="text/javascript" src="javascript/jquery.easing.1.3.js"></script>
		
	</head>

		<script type="text/javascript">
			
			//<![CDATA
				
				var d = document;
				var http = null;
				var MAX = null;
				var STEP = null;
				var offset = null;
				var VISIBLE = null;
				var fallback = null;
				var load = true;
				
				function createRequestObj() {
					
					try {
						
						http = new XMLHttpRequest();
					}
					catch( trymicrosoft ) {
						
						try {
							
							http = new ActiveXObject( "Msxml2.XMLHTTP" );
						}
						catch( othermicrosoft ) {
							
							try {
								
								http = new ActiveXobject( "Microsoft.XMLHTTP" );
							}
							catch( failed ) {
								
								http = null;
							}
						}
					}
					
					if( http == null ) {
						
						void( 0 );
						
					}
				}
				
				function bindLinks( id, root ) {
					
					$( '#' + id + '_next' ).fadeIn( 'slow' );
					$( '#' + id + '_prev' ).fadeIn( 'slow' );
					
					$( '#' + id + '_prev' ).unbind( 'click' );
					$( '#' + id + '_next' ).unbind( 'click' );
					
					var f = ( offset >= MAX )? MAX : offset;
					var b = ( fallback < 0 )? 0 : fallback;
					
					if( f == MAX )
					{
						$( '#' + id + '_next p' ).css( 'cursor', 'normal' ).fadeOut( 'slow' );
						
						$( '#' + id + '_next' ).click( function() {
							
							void( 0 );
						});
					}
					else
					{
						$( '#' + id + '_next p' ).css( 'cursor', 'pointer' ).fadeIn( 'slow' );
						
						$( '#' + id + '_next' ).click( function() {
							
							getResults( id, 'getdata_slider.php', 'request=' + root + ',' + f + ', next, 4' );
						});
					}
					
					if( fallback < 0 )
					{
						$( '#' + id + '_prev p' ).css( 'cursor', 'normal' ).fadeOut( 'slow' );
						
						$( '#' + id + '_prev' ).click( function() {
							
							void( 0 );
						});
					}
					else
					{
						$( '#' + id + '_prev p' ).css( 'cursor', 'pointer' ).fadeIn( 'slow' );
						
						$( '#' + id + '_prev' ).click( function() {
							
							getResults( id, 'getdata_slider.php', 'request=' + root + ',' + b + ', prev, 4' );
						});	
					}
				}
				
				
				function getResults( id, url, _params ) {
					
					createRequestObj();
					
					params = '?' + _params + '&id=' + id;
					
					http.open( "POST", url + params, true );
					http.setRequestHeader( "Content-type", "application/x-www-form-urlencoded" );
					http.setRequestHeader( "Content-length", params.length );
					http.setRequestHeader( "Connection", "close" );
					
					
					http.onreadystatechange = function() {
						
						if( ( http.readyState == 4 ) && ( http.status == 200 ) ) {
							
							var dflt_text = null;
							var result = http.responseText;
							
							d.getElementById( id ).innerHTML = result;
							
							var state = d.getElementById( id + '_state' ).innerHTML;
							
							r = parseInt( d.getElementById( id + '_rt' ).innerHTML );
							MAX = parseInt( d.getElementById( id + '_max' ).innerHTML );
							STEP = parseInt( d.getElementById( id + '_step' ).innerHTML );
							offset = parseInt( d.getElementById( id + '_offset' ).innerHTML );
							VISIBLE = parseInt( d.getElementById( id + '_visible' ).innerHTML );
							currCat = parseInt( d.getElementById( id + '_category' ).innerHTML );
							fallback = parseInt( d.getElementById( id + '_fallback' ).innerHTML );
							dflt_text = d.getElementById( id + '_dflttext' ).innerHTML;
							
							var MARGIN = VISIBLE * STEP;
							
							if( state == 'next' )
							{
								$( '#' + id + '_slider' ).animate( { left: "+=" + MARGIN + "px" }, { queue: syncTabs( id, 0 ), duration: 750, easing: 'easeOutExpo' } );
								$( '#' + id + '_slider table' ).fadeIn( 'fast' );
								$( '#' + id + '_drop' ).html( '<table class="tabs_container" cellpadding="0" cellspacing="0" border="0" width="0%" align="center" style="padding-top:10px"><tr><td class="defaulttext">' + dflt_text + '</td></tr></table>' );
								$( '#' + id + '_drop .tabs_container' ).animate( { width: "98%" }, { queue:false, duration: 750, easing: 'easeOutExpo' } );
								
								bindLinks( id, r );
							}
							else if( state == 'prev' )
							{
								$( '#' + id + '_slider' ).animate( { left: "-=" + MARGIN + "px" }, { queue: syncTabs( id, 0 ), duration: 750, easing: 'easeOutExpo' } );
								$( '#' + id + '_slider table' ).fadeIn( 'fast' );
								$( '#' + id + '_drop' ).html( '<table class="tabs_container" cellpadding="0" cellspacing="0" border="0" width="0%" align="center" style="padding-top:10px"><tr><td class="defaulttext">' + dflt_text + '</td></tr></table>' );
								$( '#' + id + '_drop .tabs_container' ).animate( { width: "98%" }, { queue: false, duration: 750, easing: 'easeOutExpo' } );
								
								bindLinks( id, r );
							}
							
							
															
								if ( id != "slider2" && load )
								{
									load = false;
									getResults( 'slider2', 'getdata_slider.php', 'request=46460, 0, next, 4, 46618' );
								}
								
														
						}
						else {
							
							d.getElementById( id ).innerHTML = '<table width="100%" height="61"><tr><td align="center" valign="middle"><img src="images/' + ( ( id == "slider1" )? "blue" : "red" ) + '_loader_big.gif" width="128" height="15" border="0"/></td></tr></table>';
							
						}
					}
					
					http.send( params );
					
				}
				
				
				var d2 = document;
				var http2 = null;
				
				function createRequestObj2() {
					
					try {
						
						http2 = new XMLHttpRequest();
					}
					catch( trymicrosoft ) {
						
						try {
							
							http2 = new ActiveXObject( "Msxml2.XMLHTTP" );
						}
						catch( othermicrosoft ) {
							
							try {
								
								http2 = new ActiveXobject( "Microsoft.XMLHTTP" );
							}
							catch( failed ) {
								
								http2 = null;
							}
						}
					}
					
					if( http2 == null ) {
						
						void( 0 );
						
					}
				}
				
				function getResults2( id, url, _params ) {
					
					createRequestObj2();
					
					params2 = '?' + _params;
					
					http2.open( "POST", url + params2, true );
					http2.setRequestHeader( "Content-type", "application/x-www-form-urlencoded" );
					http2.setRequestHeader( "Content-length", params2.length );
					http2.setRequestHeader( "Connection", "close" );
					
					
					http2.onreadystatechange = function() {
						
						if( ( http2.readyState == 4 ) && ( http2.status == 200 ) ) {
							
							var result2 = http2.responseText;
							
							d2.getElementById( id + '_drop' ).innerHTML = result2;
							$( '#' + id + '_drop .tabs_container' ).fadeIn( 'normal' );
							
						}
						else {
							
							d2.getElementById( id + '_drop' ).innerHTML = '<table width="100%" height="96"><tr><td align="center" valign="middle"><img src="images/' + ( ( id == "slider1" )? "blue" : "red" ) + '_loader.gif" width="32" height="32" border="0"/></td></tr></table>';
							
						}
					}
					
					http2.send( params2 );
				}
				
				function initTabs() {
					
					void( 0 ); // unused
					
				}
				
				
				function syncTabs( id, order ) {
					
					var color = null;
					var prefix = null;
					
					if( id == 'slider1' ) {
						
						color = 'blue';
						prefix = 'b';
					}
					else {
						
						color = 'red';
						prefix = 'r';
					}
					
					/* 	automatic first button selection ( to be reactivated upon clients request ). automatic subitems withdrawal is not implemented.
					-------------------------------------------------------------------------------------------------------------------------------------------------  	
						
						$( '#' + id + '_delimeter_' + order + '' ).removeClass( prefix + 'sep' ).css( 'backgroundColor', 'white' ).css( 'display', '' );
						$( '#' + id + '_delimeter_' + ( order + 1 ) + '' ).removeClass( prefix + 'sep' ).css( 'backgroundColor', 'white' ).css( 'display', '' );
						$( '#' + id + '_frame .tab_' + order + '' ).removeClass( color + '_off' );
						$( '#' + id + '_frame .tab_' + order + '' ).addClass( color + '_on' );
						
					-------------------------------------------------------------------------------------------------------------------------------------------------	
					*/
					
					$( '#' + id + '_frame .button' ).hover( function() {
						
						syncOneTab( id, this.className, this.id );
						
					} );
					
					$( '#' + id + '_frame .button' ).click( function() {
						
						document.location.href = 'http://www.surf-com.com/' + '?categoryId=' + this.id;
					} );
					
				}
				
				function syncOneTab( id, className, category ) {
					
					var subClasses = className.split( ' ' );
					var order = subClasses[ 0 ].substr( 4, 1 );
					
					if( id == 'slider1' ) {
						
						color = 'blue';
						prefix = 'b';
					}
					else {
						
						color = 'red';
						prefix = 'r';
					}
					
					$( '#' + id + ' .separator' ).addClass( prefix + 'sep' );
					$( '#' + id + ' .button' ).removeClass( color + '_on' ).addClass( color + '_off' );
					$( '#' + id + '_delimeter_' + ( ++order ) ).removeClass( prefix + 'sep' ).css( 'backgroundColor', 'white' ).css( 'display', '' );
					$( '#' + id + '_delimeter_' + ( --order ) ).removeClass( prefix + 'sep' ).css( 'backgroundColor', 'white' ).css( 'display', '' );
					$( '#' + id + '_frame .' + subClasses[ 0 ] + '' ).removeClass( color + '_off' ).addClass( color + '_on' );;
					
					getResults2( id, 'getdata_tabs.php', 'categoryId=' + category + '&order=' + order );
					
				}
				
			//]]>>
			
		</script>
		
		<script type="text/javascript" type="javascript">
			
			//<![CDATA
				
				String.prototype.replaceAll = function ( strTarget, strSubString ) {
					var strText = this;
					var intIndexOfMatch = strText.indexOf( strTarget );
				 
					while ( intIndexOfMatch != -1 ) {
						
						strText = strText.replace( strTarget, strSubString )
						intIndexOfMatch = strText.indexOf( strTarget );
					}
				  
					return( strText );
				}
				
				function processLinks() {
					
					alts = new Array();
					alts = document.getElementsByTagName( 'img' );
					for( var i = 0; i < alts.length; i++ )
					{
						alts[ i ].alt = "";
					}
					
					imgs = new Array();
					imgs = document.getElementsByTagName( 'img' );
					for( var i = 0; i < imgs.length; i++ )
					{
						imgs[ i ].src = imgs[ i ].src.replaceAll( 'http://www.upsite.co.il/uploaded/', 'data/' );
					}
					
					linx = new Array();
					linx = document.getElementsByTagName( 'a' );
					for( var i = 0; i < linx.length; i++ )
					{
              if ( linx[ i ].href.indexOf( "http://www.upsite.co.il/uploaded/" ) != -1 )
					    {
						    linx[ i ].href = linx[ i ].href.replaceAll( 'http://www.upsite.co.il/uploaded/', 'data/' );
						  }
					}
				}
				
			//]]>>
			
		</script>
	
<script type="text/javascript">
	
	$( document ).ready( function() {
		
		
		
			
		getResults( 'slider1', 'getdata_slider.php', 'request=' + 46459 + ', 0, next, 4, 46552 ' );
		
		
	
});
	
</script>

<body style="background:white url(images/body_bg.jpg) right top no-repeat; overflow-y:scroll;">
	<table cellpadding="0" cellspacing="0" border="0" width="979" align="center" height="100%">
		<tr>
			<td valign="top" height="18" colspan="2"><img src="images/pix.gif" width="1" height="1" alt="" border="0"/></td>
		</tr>
		<tr>
			<td valign="top" align="center">
				<table cellpadding="0" cellspacing="0" border="0" class="fwh">
					<tr>
						<td valign="top" height="78" align="left" id="logo"><a href="http://www.surf-com.com/"><p><img width="149" height="78" border="0" src="http://www.upsite.co.il/uploaded/images/963_1aac56144ba12d51073fade4517b3903.png" alt="logo" /></p></a></td>
						<td valign="top" align="right" style="padding-right:22px;">
							<table cellpadding="0" cellspacing="0" border="0">
								<tr>
									<td valign="middle"><a class="uppermenu_selected" href="http://www.surf-com.com/">Homepage</a></td>
									<td valign="top" class="uppernenu" width="13" align="center">|</td>
									
																			
										<td valign="middle"><a class="uppermenu" href="http://www.surf-com.com/?categoryId=46457">Careers</a></td>
										
																				
										<td valign="top" class="uppermenu" width="13" align="center">|</td>
										
																				
										<td valign="middle"><a class="uppermenu" href="http://www.surf-com.com/?categoryId=46718">Site Map</a></td>
										
																			
								</tr>
							</table>
						</td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td valign="top" height="20"><img src="images/pix.gif" width="1" height="1" alt="" border="0"/></td>
		</tr>
		<tr>
			<td valign="top" height="24" align="left">
				<table cellpadding="0" cellspacing="0" border="0">
					<tr>
						<td valign="top">
						
						<script language="JavaScript">

	function __setHighlight( objRef, set )
	{
		if ( objRef.tagName == "DIV" )
		{
			return;
		}

		if ( objRef.className && objRef.className.length > 0 )
		{
			if ( set )
			{
				objRef.className += "_over";
			}
			else
			{
				objRef.className = objRef.className.replace( "_over", "" );
			}
		}

		for ( var node in objRef.childNodes )
		{
			__setHighlight( objRef.childNodes[ node ], set );
		}
	}

	function __showMenu( objRef, name, show )
	{
		__setHighlight( objRef, show );
		var menu = document.getElementById( name );
		menu.style.display = ( show ) ? "inline" : "none";
	}

</script>
	<table cellspacing="0" cellpadding="0" border="0" class="us_ddm_main_table" height="35" style="z-index:100">
		<tr>
		<!--	<td>
				<table cellspacing="0" cellpadding="0" width="100%" border="0" class="fh">
					<tr>
						<td valign="bottom"><a class="topmenu_selected" href="index.php">homepage</a></td>
						<td valign="bottom" class="topmenu" width="22" align="center">|</td>
					</tr>
				</table>
			</td>-->

			<td class="us_ddm_menu_item_parent_2" onmouseout="__showMenu( this, '__menu54316', false );" onmouseover="__showMenu( this, '__menu54316', true );">
				<table cellspacing="0" cellpadding="0" width="100%" height="100%" border="0">
					<tr>
						<td valign="bottom" align="center"><a href="#" class="topmenu">Products</a></td>
						<td valign="bottom" class="topmenu" width="22" align="center">|</td>
					</tr>
					<tr>
						<td align="" class="us_ddm_menu_cell_parent_2">
						<div style="position:absolute;z-index:999;">
								<div style="z-index:999; display: none; position: relative; right:0px;" class="us_ddm_menu_div_parent_2" id="__menu54316">	<table cellspacing="0" cellpadding="0" border="0" class="us_ddm_main_table" height="35" style="z-index:100">
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=54317" class="topmenu3">SURF Engine DSP-Based Multimedia Enabling Suite </a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=54319" class="topmenu3">TranSURF Transcoding Acceleration Blade</a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=54321" class="topmenu3">SURFAce-812 E1/T1 PCIe Video & Voice Blade</a></td>
					</tr>
				</table>
			</td>
		</tr>
	</table>
</div>
						</div>
						</td>
					</tr>
				</table>
			</td>
			<td class="us_ddm_menu_item_parent_2" onmouseout="__showMenu( this, '__menu46460', false );" onmouseover="__showMenu( this, '__menu46460', true );">
				<table cellspacing="0" cellpadding="0" width="100%" height="100%" border="0">
					<tr>
						<td valign="bottom" align="center"><a href="http://www.surf-com.com/?categoryId=46460" class="topmenu">SURF Engine</a></td>
						<td valign="bottom" class="topmenu" width="22" align="center">|</td>
					</tr>
					<tr>
						<td align="" class="us_ddm_menu_cell_parent_2">
						<div style="position:absolute;z-index:999;">
								<div style="z-index:999; display: none; position: relative; right:0px;" class="us_ddm_menu_div_parent_2" id="__menu46460">	<table cellspacing="0" cellpadding="0" border="0" class="us_ddm_main_table" height="35" style="z-index:100">
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46618" class="topmenu3">Hardware</a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46754" class="topmenu3">Codecs, Formats, Transports</a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46755" class="topmenu3">Data Support</a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46756" class="topmenu3">Quality Enhancers</a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46757" class="topmenu3">Manipulations</a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46758" class="topmenu3">Enrichment</a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46759" class="topmenu3">Application Elements</a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46760" class="topmenu3">Interfaces</a></td>
					</tr>
				</table>
			</td>
		</tr>
	</table>
</div>
						</div>
						</td>
					</tr>
				</table>
			</td>
			<td class="us_ddm_menu_item_parent_2" onmouseout="__showMenu( this, '__menu46459', false );" onmouseover="__showMenu( this, '__menu46459', true );">
				<table cellspacing="0" cellpadding="0" width="100%" height="100%" border="0">
					<tr>
						<td valign="bottom" align="center"><a href="http://www.surf-com.com/?categoryId=46459" class="topmenu">Solutions</a></td>
						<td valign="bottom" class="topmenu" width="22" align="center">|</td>
					</tr>
					<tr>
						<td align="" class="us_ddm_menu_cell_parent_2">
						<div style="position:absolute;z-index:999;">
								<div style="z-index:999; display: none; position: relative; right:0px;" class="us_ddm_menu_div_parent_2" id="__menu46459">	<table cellspacing="0" cellpadding="0" border="0" class="us_ddm_main_table" height="35" style="z-index:100">
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46552" class="topmenu3">IMS / NGN</a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46554" class="topmenu3">Mobile</a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46553" class="topmenu3">TV</a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46761" class="topmenu3">PBX</a></td>
					</tr>
				</table>
			</td>
		</tr>
	</table>
</div>
						</div>
						</td>
					</tr>
				</table>
			</td>
			<td class="us_ddm_menu_item_parent_2" onmouseout="__showMenu( this, '__menu46461', false );" onmouseover="__showMenu( this, '__menu46461', true );">
				<table cellspacing="0" cellpadding="0" width="100%" height="100%" border="0">
					<tr>
						<td valign="bottom" align="center"><a href="http://www.surf-com.com/?categoryId=46461" class="topmenu">Resource Center</a></td>
						<td valign="bottom" class="topmenu" width="22" align="center">|</td>
					</tr>
					<tr>
						<td align="" class="us_ddm_menu_cell_parent_2">
						<div style="position:absolute;z-index:999;">
								<div style="z-index:999; display: none; position: relative; right:0px;" class="us_ddm_menu_div_parent_2" id="__menu46461">	<table cellspacing="0" cellpadding="0" border="0" class="us_ddm_main_table" height="35" style="z-index:100">
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46805" class="topmenu3">Product Documents</a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46893" class="topmenu3">SURF University </a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=48426" class="topmenu3">Success Stories</a></td>
					</tr>
				</table>
			</td>
		</tr>
	</table>
</div>
						</div>
						</td>
					</tr>
				</table>
			</td>
			<td class="us_ddm_menu_item_parent_2" onmouseout="__showMenu( this, '__menu46462', false );" onmouseover="__showMenu( this, '__menu46462', true );">
				<table cellspacing="0" cellpadding="0" width="100%" height="100%" border="0">
					<tr>
						<td valign="bottom" align="center"><a href="http://www.surf-com.com/?categoryId=46462" class="topmenu">Company</a></td>
						<td valign="bottom" class="topmenu" width="22" align="center">|</td>
					</tr>
					<tr>
						<td align="" class="us_ddm_menu_cell_parent_2">
						<div style="position:absolute;z-index:999;">
								<div style="z-index:999; display: none; position: relative; right:0px;" class="us_ddm_menu_div_parent_2" id="__menu46462">	<table cellspacing="0" cellpadding="0" border="0" class="us_ddm_main_table" height="35" style="z-index:100">
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46743" class="topmenu3">Company overview</a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46744" class="topmenu3">Partners </a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46788" class="topmenu3">Board of Directors</a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46786" class="topmenu3">Management</a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46745" class="topmenu3">Media Center</a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46746" class="topmenu3">Upcoming Events</a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46784" class="topmenu3">Environmental Strategy</a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46747" class="topmenu3">Careers</a></td>
					</tr>
				</table>
			</td>
		</tr>
	</table>
</div>
						</div>
						</td>
					</tr>
				</table>
			</td>
			<td class="us_ddm_menu_item_parent_2" onmouseout="__showMenu( this, '__menu46717', false );" onmouseover="__showMenu( this, '__menu46717', true );">
				<table cellspacing="0" cellpadding="0" width="100%" height="100%" border="0">
					<tr>
						<td valign="bottom" align="center"><a href="http://www.surf-com.com/?categoryId=46717" class="topmenu">Contact Us</a></td>
						<td valign="bottom" class="topmenu" width="22" align="center">|</td>
					</tr>
					<tr>
						<td align="" class="us_ddm_menu_cell_parent_2">
						<div style="position:absolute;z-index:999;">
								<div style="z-index:999; display: none; position: relative; right:0px;" class="us_ddm_menu_div_parent_2" id="__menu46717">	<table cellspacing="0" cellpadding="0" border="0" class="us_ddm_main_table" height="35" style="z-index:100">
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46740" class="topmenu3">Contact Form</a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46741" class="topmenu3">Local Offices / Distributors</a></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td class="us_ddm_menu_item_3" >
				<table cellspacing="2" cellpadding="0"  border="0" width="150" background="images/menu_item_stripe.png">
					<tr>
						<td class="us_ddm_link_cell_3" align="" height="30"  style="width:150px; border-bottom:1px solid #006784;padding-left:14px"><a href="http://www.surf-com.com/?categoryId=46742" class="topmenu3">Driving Directions</a></td>
					</tr>
				</table>
			</td>
		</tr>
	</table>
</div>
						</div>
						</td>
					</tr>
				</table>
			</td>
			
		</tr>
	</table>
						
						</td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td valign="top" height="8"><img src="images/pix.gif" width="1" height="1" alt="" border="0"/></td>
		</tr>
		<tr>
			<td valign="middle" align="left" height="290" width="100%" style="padding-left:0px;background:url(images/pix.gif) top left no-repeat;">
			
			<embed width="974" height="243" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" src="http://www.upsite.co.il/uploaded/files/963_3302268c305c0e1a9fc71e1785cd3244.swf" play="true" loop="true" menu="true"></embed>				
				<div style="position:relative; display:block;">
				
									
					<div class="whats_new"  style="position:absolute; top:-210px; right:26px; width:200px;" >
						<table cellpadding="0" cellspacing="0" border="0" align="right">
							<tr>
								<td valign="top"><img src="images/whatsnew_bg_l.png" width="9" height="254" border="0" alt="" /></td>
								<td valign="top" width="200" style="background:url(images/whatsnew_bg_in.png) repeat-x;" align="center"><table cellpadding="0" border="0" cellscpacing="0">
    <tbody>
        <tr>
            <td valign="middle" height="30" style="text-align: center;"><span style="font-family: Arial;"><span style="color: rgb(11, 78, 116);"><span style="font-size: 19px;">What&rsquo;s New?</span></span></span></td>
        </tr>
        <tr>
            <td valign="bottom" height="115">
            <p><span><span style="font-family: Arial;"><a href="http://www.surf-com.com/?categoryId=46745&amp;itemId=126099"><span style="font-size: 12px;">11 Aug. 2010- SURF Licenses Texas Instruments' High Quality Video Codecs</span></a><br />
            </span></span><span style="font-size: 12px;"><span style="font-family: Arial;"><br />
            </span></span></p>
            <p><span style="font-size: 12px;"><span style="font-family: Arial;"><a href="http://www.surf-com.com/events">Doron Meirom, President of SURF Inc. to speak at ITExpo - 4-6 October - Los Angeles Convention Center.</a></span></span></p>
            </td>
        </tr>
        <tr>
            <td>&nbsp;</td>
        </tr>
        <tr>
            <td width="177" height="30" style="background-color: transparent; background-image: url(&quot;http://www.upsite.co.il/uploaded/images/963_6938c61e633707532d113aaf68be3c76.jpg&quot;); background-repeat: repeat; background-attachment: scroll; background-position: 0% 0%; -moz-background-size: auto auto; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"><span style="font-size: 12px;"><span style="color: rgb(255, 255, 255);"><span style="font-family: Arial;">&nbsp;&nbsp;</span></span></span><span style="color: rgb(255, 255, 255);"><strong><a href="http://www.surf-com.com/?categoryId=54319"><span style="font-size: 12px;"><span style="color: rgb(255, 255, 255);"><span style="font-family: Arial;">TranSURF</span></span></span></a></strong></span></td>
        </tr>
        <tr>
            <td width="177" height="30" style="background-color: transparent; background-image: url(&quot;http://www.upsite.co.il/uploaded/images/963_d7eb866215dc9233773f695039a3f155.jpg&quot;); background-repeat: repeat; background-attachment: scroll; background-position: 0% 0%; -moz-background-size: auto auto; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"><span style="font-size: 12px;"><span style="font-family: Arial;">&nbsp;<span style="color: rgb(255, 255, 255);">&nbsp;<a href="http://www.surf-com.com/?categoryId=46618&amp;itemId=106573"><span style="color: rgb(255, 255, 255);"><span style="font-weight: bold;">SURFAce-812 E1/T1</span></span></a></span></span></span><span style="color: rgb(255, 255, 255);">&nbsp;</span></td>
        </tr>
    </tbody>
</table>
<p>&nbsp;</p></td>
								<td valign="top"><img src="images/whatsnew_bg_r.png" width="8" height="254" border="0" alt="" /></td>
							</tr>
						</table>
					</div>
					
								
				</div>
			</td>
		</tr>
		
			
		<tr>
			<td valign="top" height="40">
				<table cellpadding="0" cellspacing="0" border="0" width="979" height="40">
					<tr>
						<td width="487" valign="middle" align="left" class="title" style="padding-left:20px;" ><p>Solutions for</p></td>
						<td width="5"><img src="images/pix.gif" width="1" height="1" border="0" alt=""/></td>
						<td width="487" valign="middle" align="left" class="title" style="padding-left:20px;"><p>SURF Engine</p></td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td valign="top" align="center">
				<table cellpadding="0" cellspacing="0" border="0" width="979" height="196">
					<tr>
						<td width="487" valign="top" align="center">
						
								
		<table cellpadding="0" cellspacing="0" border="0">
			<tr>
				<td class="blue_left" width="8"><img src="images/pix.gif" width="8" height="1" border="0" alt=""/></td>
				<td class="blue_center" width="464">
					<table cellpadding="0" cellspacing="0" border="0" class="fwh">
						<tr>
							<td height="61" align="center" valign="top">
								<div id="slider1" style="width:100%; height:61px; display:block; position:relative; overflow:hidden; text-align:center;" align="center"></div>
							</td>
						</tr>
						<tr>
							<td id="slider1_drop" height="96" align="center" valign="top"><p><span style="font-size: 12px">Video will account for 64% of mobile traffic by 2013.&nbsp;</span></p>
<p><span style="color: #000000"><strong><span style="font-size: 12px">The SURF Engine is video ready now.&nbsp; </span></strong></span></p>
<p><strong><span style="font-size: 12px"><a href="http://www.surf-com.com/?contact">CONTACT US NOW&nbsp;&nbsp;</a></span></strong><span style="font-size: 12px">for more info.</span></p></td>
						</tr>
						<tr>
							<td height="1">
								<table cellpadding="0" cellspacing="0" border="0" class="fwh">
									<tr>
										<td width="10"><img src="images/pix.gif" width="10" height="1" border="0" alt=""/></td>
										<td width="100%" class="sep"><img src="images/pix.gif" width="1" height="1" border="0" alt=""/></td>
										<td width="10"><img src="images/pix.gif" width="10" height="1" border="0" alt=""/></td>
									</tr>
								</table>
							</td>
						</tr>
						<tr>
							<td height="25" align="center">
								<table cellpadding="0" cellspacing="0" border="0" class="fh" width="98%">
									<tr>
										<td width="50%" id="slider1_prev"><p align="left" class="parr dir_text" valign="middle">Previous</p></td>
										<td width="50%" id="slider1_next"><p align="right" class="narr dir_text" valign="middle">Next</p></td>
									</tr>
								</table>
							</td>
						</tr>
						<tr>
							<td height="13"><img src="images/pix.gif" width="1" height="1" border="0" alt=""/></td>
						</tr>
					</table>
				</td>
				<td class="blue_right" width="14"><img src="images/pix.gif" width="8" height="1" border="0" alt=""/></td>
			</tr>
		</table>
		
							
						</td>
						<td width="5"><img src="images/pix.gif" width="5" height="1" border="0" alt=""/></td>
						<td width="487" valign="top" align="center">
						
								<table cellpadding="0" cellspacing="0" border="0">
			<tr>
				<td class="red_left" width="8"><img src="images/pix.gif" width="8" height="1" border="0" alt=""/></td>
				<td class="red_center" width="464">
					<table cellpadding="0" cellspacing="0" border="0" class="fwh">
						<tr>
							<td height="61" align="center" valign="top">
								<div id="slider2" style="width:100%; height:61px; display:block; position:relative; overflow:hidden; text-align:center;" align="center"></div>
							</td>
						</tr>
						<tr>
							<td id="slider2_drop" height="96" align="center" valign="top"><p><span style="font-size: 12px">Video will account for 64% of mobile traffic by 2013.&nbsp;</span></p>
<p><span style="color: #000000"><strong><span style="font-size: 12px">The SURF Engine is video ready now.&nbsp; </span></strong></span></p>
<p><strong><span style="font-size: 12px"><a href="http://www.surf-com.com/?contact">CONTACT US NOW&nbsp;&nbsp;</a></span></strong><span style="font-size: 12px">for more info.</span></p></td>
						</tr>
						<tr>
							<td height="1">
								<table cellpadding="0" cellspacing="0" border="0" class="fwh">
									<tr>
										<td width="10"><img src="images/pix.gif" width="10" height="1" border="0" alt=""/></td>
										<td width="100%" class="sep"><img src="images/pix.gif" width="1" height="1" border="0" alt=""/></td>
										<td width="10"><img src="images/pix.gif" width="10" height="1" border="0" alt=""/></td>
									</tr>
								</table>
							</td>
						</tr>
						<tr>
							<td height="25" align="center">
								<table cellpadding="0" cellspacing="0" border="0" class="fh" width="98%">
									<tr>
										<td width="50%" id="slider2_prev"><p align="left" class="parr dir_text" valign="middle">Previous</p></td>
										<td width="50%" id="slider2_next"><p align="right" class="narr dir_text" valign="middle">Next</p></td>
									</tr>
								</table>
							</td>
						</tr>
						<tr>
							<td height="13"><img src="images/pix.gif" width="1" height="1" border="0" alt=""/></td>
						</tr>
					</table>
				</td>
				<td class="red_right" width="14"><img src="images/pix.gif" width="8" height="1" border="0" alt=""/></td>
			</tr>
		</table>
		
							
						</td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td valign="top" height="14"><img src="images/pix.gif" width="1" height="1" alt="" border="0"/></td>
		</tr>
		<tr>
			<td valign="top" align="center">
				<table cellpadding="0" cellspacing="0" border="0" class="fwh" style="padding:0px 4px;">
					<tr>
						<td valign="top" align="left" id="dynamic_bottom_left">
							<p><span style="font-size: 12px;">Powered by</span><br />
<img src="http://www.upsite.co.il/uploaded/images/963_1aac56144ba12d51073fade4517b3903.png" alt="logo" style="width: 62px; height: 32px;" /></p>						</td>
						<td valign="top" width="100%">
							<table cellpadding="0" cellspacing="0" border="0" width="420">
								<tr>
									<td valign="top" style="padding-left:20px" >
										<marquee direction="left"  scrollamount="2" class="us_news_marquee"  scrolldelay="25" onmouseover="this.stop();" onmouseout="this.start();">
																					<span class="news_logos"><img src="data/images/963_ebe9721f7533efef56d9dee7c3e33253.jpg" width="68" height="36" border="0" alt="" /></span>
																					<span class="news_logos"><img src="data/images/963_941868c47ddc5cf9cdd6c2df3d5eb325.jpg" width="153" height="36" border="0" alt="" /></span>
																					<span class="news_logos"><img src="data/images/963_f8a1dd1a5c8ca4d904690b26af4b09e2.jpg" width="93" height="26" border="0" alt="" /></span>
																					<span class="news_logos"><img src="data/images/963_2764f5fb2bd9544217aeb501a9501d1e.jpg" width="126" height="36" border="0" alt="" /></span>
																					<span class="news_logos"><img src="data/images/963_5051d5a3a69545d70fcdd94cd174730c.gif" width="162" height="36" border="0" alt="" /></span>
																					<span class="news_logos"><img src="data/images/963_2d368976af1764a3e7d00f0b1334c995.jpg" width="141" height="36" border="0" alt="" /></span>
																					<span class="news_logos"><img src="data/images/963_eb658eed231b3f62a3552a39f85358a6.jpg" width="80" height="36" border="0" alt="" /></span>
																					<span class="news_logos"><img src="data/images/963_2de696ab356129882eb0871461686a0e.jpg" width="111" height="36" border="0" alt="" /></span>
																					<span class="news_logos"><img src="data/images/963_f69a5c3cdf68fe9a07502855d25822cb.jpg" width="131" height="36" border="0" alt="" /></span>
																					<span class="news_logos"><img src="data/images/963_eecc1d1bdd18fd7461b2ed8737a53c90.jpg" width="57" height="36" border="0" alt="" /></span>
																					<span class="news_logos"><img src="data/images/963_777d6c451063f7d322b336298cc4129c.jpg" width="120" height="36" border="0" alt="" /></span>
																					<span class="news_logos"><img src="data/images/963_3b1f1e292af3b00faee33eb196e83dcd.jpg" width="177" height="36" border="0" alt="" /></span>
																					<span class="news_logos"><img src="data/images/963_502b94294573adbd4ff2b30c0dfbc496.JPG" width="144" height="36" border="0" alt="" /></span>
																					<span class="news_logos"><img src="data/images/963_0cff82261b00e4abc1d461c78acf4c8b.gif" width="36" height="36" border="0" alt="" /></span>
																					<span class="news_logos"><img src="data/images/963_2c5f9cd14a76ae58dd9ed345240a622a.jpg" width="74" height="36" border="0" alt="" /></span>
																					<span class="news_logos"><img src="data/images/963_1789ef65595628bb0a915d128ed18f57.jpg" width="102" height="36" border="0" alt="" /></span>
																					<span class="news_logos"><img src="data/images/963_68880453e003b90135244ba4546ae00e.jpg" width="82" height="36" border="0" alt="" /></span>
																					<span class="news_logos"><img src="data/images/963_021b975775f57cd5ee49c15b5809e241.jpg" width="144" height="36" border="0" alt="" /></span>
																					<span class="news_logos"><img src="data/images/963_94f987e3286ac83b17857460db6bbc83.jpg" width="100" height="36" border="0" alt="" /></span>
																					<span class="news_logos"><img src="data/images/963_b9010eef41df9291b79f3b07076f710a.jpg" width="102" height="36" border="0" alt="" /></span>
																					<span class="news_logos"><img src="data/images/963_20f57ce69fcd547f8c535a032c398ef7.jpg" width="88" height="36" border="0" alt="" /></span>
																				</marquee>
									</td>
								</tr>
							</table>
						</td>
						<td valign="top" align="right" class="case">
							<table cellpadding="0" cellspacing="0" border="0" width="332" align="right">
								<tr>
									<td valign="top"><img src="images/hp_bottom_t.jpg" width="332" height="4" border="0" alt="" /></td>
								</tr>
								<tr>
									<td valign="top" align="center" style="background:url(images/hp_bottom_in.jpg) repeat-y"><table style="width: 314px; height: 56px" border="0" cellspacing="1" cellpadding="1">
    <tbody>
        <tr>
            <td style="border-right: rgb(131,130,130) 1px solid"><span style="color: rgb(11,70,103)"><span style="font-size: 21px"><span style="font-family: Tahoma">Spotlight</span></span></span></td>
            <td>&nbsp;</td>
            <td style="text-align: left" valign="middle"><a href="http://www.surf-com.com/?categoryId=46745&amp;itemId=111284"><span style="color: #ff0000"><span style="font-size: 12px"><span style="font-family: Arial">Support for Microsoft Silverlight </span></span></span></a></td>
        </tr>
    </tbody>
</table></td>
								</tr>
								<tr>
									<td valign="top"><img src="images/hp_bottom_b.jpg" width="332" height="4" border="0" alt="" /></td>
								</tr>
							</table>
						</td>
					</tr>
				</table>
			</td>
		</tr>
			
		<tr>
			<td height="20" colspan="1"><img src="images/pix.gif" width="1" height="1" border="0" alt=""/></td>
		</tr>
		<tr>
			<td valign="top" style="padding:0px 4px"><hr  style="border-top:1px solid #838282;" /></td>
		</tr>
		<tr>
			<td valign="top" align="center">
				<table cellpadding="0" cellspacing="0" border="0" class="fwh" class="fwh" style="padding:0px 4px;">
					<tr>
						<td valign="top" height="19" align="left"><p><span style="font-size: 10px;"><span style="color: rgb(101, 101, 101);"><span style="font-family: Arial;">&copy; Copyright 2010, SURF Communication Solutions, All rights reserved.&nbsp;</span></span></span><span style="color: rgb(101, 101, 101);"><span style="font-family: Arial;"><span style="font-size: 12px;">&nbsp; <br />
</span></span></span></p></td>
						<td valign="top" align="right">
							<table cellpadding="0" cellspacing="0" border="0" align="right">
								<tr>
									<td valign="middle"><a class="bottommenu_selected" href="http://www.surf-com.com/">Homepage</a></td>
									<td valign="top" class="bottommenu" width="13" align="center">|</td>
									
																			
										<td valign="middle"><a class="bottommenu" href="http://www.surf-com.com/?categoryId=54316">Products</a></td>
										
																					
											<td valign="top" class="bottommenu" width="13" align="center">|</td>
											
																				
										<td valign="middle"><a class="bottommenu" href="http://www.surf-com.com/?categoryId=46460">SURF Engine</a></td>
										
																					
											<td valign="top" class="bottommenu" width="13" align="center">|</td>
											
																				
										<td valign="middle"><a class="bottommenu" href="http://www.surf-com.com/?categoryId=46459">Solutions</a></td>
										
																					
											<td valign="top" class="bottommenu" width="13" align="center">|</td>
											
																				
										<td valign="middle"><a class="bottommenu" href="http://www.surf-com.com/?categoryId=46461">Resource Center</a></td>
										
																					
											<td valign="top" class="bottommenu" width="13" align="center">|</td>
											
																				
										<td valign="middle"><a class="bottommenu" href="http://www.surf-com.com/?categoryId=46462">Company</a></td>
										
																					
											<td valign="top" class="bottommenu" width="13" align="center">|</td>
											
																				
										<td valign="middle"><a class="bottommenu" href="http://www.surf-com.com/?categoryId=46717">Contact Us</a></td>
										
																			
								</tr>
							</table>
						</td>
					</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td valign="top"><img src="images/pix.gif" width="1" height="1" alt="" border="0"/></td>
		</tr>
	</table>

	
	<script type="text/javascript">
		
		$( document ).ready( function() {
			
			processLinks();
			
		});
		
	</script>
	
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-12059307-1");
pageTracker._trackPageview();
} catch(err) {}</script>
</body>
</html>
