| Related sites for http://www.tns-smart.net |
| Wissen_UK_Online Signmaking software for sign design and production at affordable prices | | Systems_&_Services_Technologies,_Inc_ Offer services including loan collections, third party servicing, credit collections, and customer service. | | J_D__Honigberg_International,_Inc Export sales and management company, offering services to locate and build foreign markets for US products, and locate buyers outside the US to purchase from American factories. | | E_J_Group_Ltd Manufactures and designs custom tanks, pumps, filters and manifolds. | | Freeman_Fong_Architecture Portfolio of civic and residential projects, plus company profile and contacts. Offices in Washington, California and Beijing. | | Chateau_Building_Products Manufacturer and exporter of panelized cabins and custom homes. View introduction, services, products. USA, Asia and Europe. | | Bauer_Kompressoren Manufacturer of air compressors for scuba diving, fire ghting equipment, industrial air and gas applications, compressed natural gas applications, and rifle compressors. | | Dafang_Group_Ltd Crusher manufacturer from China | | Yoshida_Foods_International Manufacturer-co-packer of sauces, dressings, dips, and beverages. | | US_Ordnance Exclusive manufacturer and sole distributor for all models of the M60 series machine gun and spare parts. | | Chromatech UK. Manufacturers of chemicals for the textile, paper, leather, plastics and coating industries. Chemical auxiliaries for dyeing and bleaching processes. | | Dowson_Blades Manufacturer of bread slicer blades located in Europe. | | Gujarat_Technocastings_Pvt__Ltd_ India. Produces wide range of raw and machined castings. Includes valves, pump housings, and parts for earthmoving, cement, and mining industries. Site incorporates photos and details of sample end pr | | EP_Limited Researches novel diagnostic and therapeutic devices. Also offer a range of consulting services in the fields of biomedical signal processing, design and implementation of digital and analog systems. | | Scientific_Research_Institute_of_Glass_Fiber Ukraine. Institute for applied research of technologies and production machinery in the basalt, silica and quartz fiber manufacturing and allied woven, knitted, nonwoven and composite products industr | | MD_Source Distributes resumes and cover letters to recruiters who specialize in the medical device industry. | | Gospel_Net Post a resume for free. | | Abbey_Systems_Ltd SCADA designer and manufacturer for the power, water, petrochemical and broadcasting industries. | | Granda_Hills_Business_Machines Specializing in the sales and service of Nakajima, Olympia and Swintec typewriters and business calculators and accessories. | | PCBT_Photography Offering images in digital and traditional mediums for newspapers, based in the UK. |
|
TNS - 11,000 ATM's - Largest "White Label" Processor in Canada!
/*Example message arrays for the two demo scrollers*/
var pausecontent=new Array()
pausecontent[0]='[Jul. 15/2008] -- TNS Smart Network Inc. -- 11% Growth in 3 Months puts TNS over 12,000 ATMS![Apr. 15/2008] -- TNS Smart Network Inc. -- TNS Portfolio of Installed ATM\'s Surpasses the 11,000 Mark...'
pausecontent[1]='[Mar. 03/2008] -- TNS Smart Network Inc. -- Renews PCI DSS Compliance[Feb. 20/2008] -- SmartTalk Spring 2008 -- The Spring 2008 issue of SmartTalk is now available!'
pausecontent[2]='[Feb. 05/2008] -- Smart Processing Solutions Inc. -- Smart Processing SuiteTM software enables Venetian Casino multi-purpose Kiosk to dispense cash[Apr. 11/2007] -- Toronto Star -- Canadian Press. Apr 11, 2007 05:46 PM.'
pausecontent[3]='[Apr. 20/2007] -- Financial Post -- Banks unapologetic about ATM fees. Flaherty says regulating banks \'not our role\'. Paul Vieira, Financial Post. Published: Friday, April 20, 2007.[Apr. 23/2007] -- Globe and Mail -- Meet the white-label Cash Kings. TARA PERKINS AND TAVIA GRANT. Globe and Mail Update April 23, 2007 at 4:09 AM EST.'
pausecontent[4]='[Mar. 22/2007] -- Globe and Mail -- FINANCIAL SERVICES. Ottawa told to not overlook fees on \'white-label\' ABMs. Most bank machines are independent. TARA PERKINS. March 22, 2007.[Mar. 23/2007] -- Financial Post -- Banks suggest NDP wrong -most ATM transactions are free. Paul Vieira, CanWest News Service; Financial Post. Published: Friday, March 23, 2007.'
pausecontent[5]=' [Mar. 06/2007] -- Toronto Star -- Flaherty banks on fee cuts for ATM service. Finance minister says main concern is impact on poor, seniors, disabled. Mar 06, 2007 04:30 AM. [Mar. 07/2007] -- Toronto Star -- Bank cool to ABM-fee halt. Scotiabank CEO Rick Waugh defends controversial charges for using a teller machine, while unveiling record profits. Mar 07, 2007 04:30 AM.'
pausecontent[6]='[Mar. 02/2007] -- National Post -- Banks back ATM fee policy. Meeting with Flaherty: Retail outlets could suffer, says private operator. Duncan Mavin, Financial Post, with a file from Jonathan Harding in Calgary Published: Friday, March 02, 2007.[Mar. 05/2007] -- National Post -- Flaherty, banks to discuss ATM fees.Duncan Mavin, Financial Post. Published: Monday, March 05, 2007.'
var pausecontent2=new Array()
pausecontent2[0]='News.com: Technology and business reports'
pausecontent2[1]='CNN: Headline and breaking news 24/7'
pausecontent2[2]='BBC News: UK and international news'
/***********************************************
* Pausing up-down scroller- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/
function pausescroller(content, divId, divClass, delay){
this.content=content //message array content
this.tickerid=divId //ID of ticker div to display information
this.delay=delay //Delay between msg change, in miliseconds.
this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over scroller (and pause it if it is)
this.hiddendivpointer=1 //index of message array for hidden div
document.write(''+content[0]+''+content[1]+'')
var scrollerinstance=this
if (window.addEventListener) //run onload in DOM2 browsers
window.addEventListener("load", function(){scrollerinstance.initialize()}, false)
else if (window.attachEvent) //run onload in IE5.5+
window.attachEvent("onload", function(){scrollerinstance.initialize()})
else if (document.getElementById) //if legacy DOM browsers, just start scroller after 0.5 sec
setTimeout(function(){scrollerinstance.initialize()}, 500)
}
// -------------------------------------------------------------------
// initialize()- Initialize scroller method.
// -Get div objects, set initial positions, start up down animation
// -------------------------------------------------------------------
pausescroller.prototype.initialize=function(){
this.tickerdiv=document.getElementById(this.tickerid)
this.visiblediv=document.getElementById(this.tickerid+"1")
this.hiddendiv=document.getElementById(this.tickerid+"2")
this.visibledivtop=parseInt(pausescroller.getCSSpadding(this.tickerdiv))
//set width of inner DIVs to outer DIV's width minus padding (padding assumed to be top padding x 2)
this.visiblediv.style.width=this.hiddendiv.style.width=this.tickerdiv.offsetWidth-(this.visibledivtop*2)+"px"
this.getinline(this.visiblediv, this.hiddendiv)
this.hiddendiv.style.visibility="visible"
var scrollerinstance=this
document.getElementById(this.tickerid).onmouseover=function(){scrollerinstance.mouseoverBol=1}
document.getElementById(this.tickerid).onmouseout=function(){scrollerinstance.mouseoverBol=0}
if (window.attachEvent) //Clean up loose references in IE
window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null})
setTimeout(function(){scrollerinstance.animateup()}, this.delay)
}
// -------------------------------------------------------------------
// animateup()- Move the two inner divs of the scroller up and in sync
// -------------------------------------------------------------------
pausescroller.prototype.animateup=function(){
var scrollerinstance=this
if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){
this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px"
this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px"
setTimeout(function(){scrollerinstance.animateup()}, 50)
}
else{
this.getinline(this.hiddendiv, this.visiblediv)
this.swapdivs()
setTimeout(function(){scrollerinstance.setmessage()}, this.delay)
}
}
// -------------------------------------------------------------------
// swapdivs()- Swap between which is the visible and which is the hidden div
// -------------------------------------------------------------------
pausescroller.prototype.swapdivs=function(){
var tempcontainer=this.visiblediv
this.visiblediv=this.hiddendiv
this.hiddendiv=tempcontainer
}
pausescroller.prototype.getinline=function(div1, div2){
div1.style.top=this.visibledivtop+"px"
div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px"
}
// -------------------------------------------------------------------
// setmessage()- Populate the hidden div with the next message before it's visible
// -------------------------------------------------------------------
pausescroller.prototype.setmessage=function(){
var scrollerinstance=this
if (this.mouseoverBol==1) //if mouse is currently over scoller, do nothing (pause it)
setTimeout(function(){scrollerinstance.setmessage()}, 100)
else{
var i=this.hiddendivpointer
var ceiling=this.content.length
this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1
this.hiddendiv.innerHTML=this.content[this.hiddendivpointer]
this.animateup()
}
}
pausescroller.getCSSpadding=function(tickerobj){ //get CSS padding value, if any
if (tickerobj.currentStyle)
return tickerobj.currentStyle["paddingTop"]
else if (window.getComputedStyle) //if DOM2
return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top")
else
return 0
}
WELCOME TO TNS SMART NETWORK
Established in 1996, TNS Smart Network Inc. is a privately owned Canadian company and is the largest transaction processor for third party "white label" Automated Teller Machines (ATMs) in Canada.
TNS Smart Network Inc. has established a relationship with many Independent Sales Organizations (ISOs), that provide services to merchants, casinos, airports, malls and a host of other sites from coast to coast throughout Canada.
//new pausescroller(name_of_message_array, CSS_ID, CSS_classname, pause_in_miliseconds)
new pausescroller(pausecontent, "pscroller1", "someclass", 10000)
// document.write("")
// new pausescroller(pausecontent2, "pscroller2", "someclass", 2000)
TNS Smart Network Inc. is committed to ensuring ATMs operate with maximum uptime. The key to ensuring that terminals are processing transactions starts with providing our customers with "real time" terminal information through WEBMON™ and AlertPlus™. Using this web based monitoring tool, TNS Smart Network Inc. clients can obtain real-time information to proactively manage terminals anywhere, anytime.
ISOs and Financial Institutions require up-to-date transaction processing services for ATM, POS and KIOSKS. TNS Smart Network Inc. continues to be the leader in developing flexible transaction processing solutions to fit the challenges of today’s evolving transaction processing marketplace.
Home |
Company Information |
Services |
FAQ |
Press Room |
Careers |
Contact Us
Copyright © 2008 TNS Smart Network Inc. All rights reserved. | Contact Info | Privacy Policy & Terms of Use
|
|