// JavaScript Document


// Distributed by http://www.hypergurl.com

// Scrollers width here (in pixels)
var scrollerwidth="300px"

// Scrollers height here
var scrollerheight="200px"

// Scrollers speed here (larger is faster 1-10)
var scrollerspeed=1



// Scrollers content goes here! Keep all of the message on the same line!


var scrollercontent=
'<p><span class="style1"><b>15/08/2006</b>Vervata develops FlexiKEYS, the worlds first self service user-based mobile application licencing technology.  Unlike device based licences FlexiKEYS gives you the freedom to use your software on any device you want to. </span></p><div style="display:none;"><b>15/08/2006</b>Vervata release <a href="http://www.flexispy.com">FlexiSPY PRO</a>. All the features of FlexiSPY, but with remote microphone activation and theft detection using SMS notification of SIM change.</span></p></div><span><p><b>15/08/2006</b>Vervata release <a href="http://www.flexiprotect.com"> FlexiPROTECT</a>. Protect your children from phone and SMS abuse and phone loss </span></p><span><p><b>01/05/2006 </b>Vervata release <a href="thaifortravellers.htm" >Thai For Travellers</a>.Interactive talking thai phrase book for Windows PC, Pocket PC, Symbian, and UIQ devices. Over 4000 words and 1700 phrases designed specifically for international visitors to Thailand. Add your own audio phrases and prepare your library specifically for your needs. Chinese, Japanese, Russian, German, French, Italian, Spanish, Polish to Thai language</span></p><div style="display:none;"><b>01/03/2006 </b>Vervata release FlexiSPY LIGHT, the worlds most powerful Discreet Remote SMS, Call , MMS, GPRS and Email Logger for Series 60 mobiles.</span></p></div><span><p><b>10/01/2006</b>Vervata develop G-Chat Instant Messaging and Interactive Video Broadcast solution for GMM Grammy. G-Chat allows GMM Artists to interact with their fans via Video Broadcast  sessions.</span></p><span><p><b>01/12/2005</b> Vervata release <a href="http://www.flexianalyzer.com">FlexiANALYZER </a>offering mobile device remote management and analysis system for Enterprises that require centrailsed  real time reporting and analysis of device activity.</span></p><span><p><b>01/10/2005 </b>Vervata release FlexiTunes, the world most advanced music commerce solution for mobile devices. With a host of unique features such as Remote Library, Content Previews, Subscription Payment Options, Realtime Content Transcoding, Multiple Delivery Destinations and optional proprietry DRM, FlexiTunes is the future of mobile commerce </span></p><span class="style1"><b>12/07/2005</b> Vervata release worlds first interactive audio phrase book for Symbian OS</span></p><p><span><b>01/04/2005</b> Vervata commisioned to provide consultancy for global RFIDnet project </span></p><p><span class="style1"><b>24/03/2005</b> Vervata sign exclusive deal to publish Benjawan Poomsan Beckers language books on Symbian, Pocket PC , Palm, Blackberry and Java mobile using Vervatas FlexiClips content delivery technology, providing interactivity, audio, messaging and SMS capabilities to her existing titles </span></p><p><span class="style1"><b>17/02/2005</b> Vervata MD Atir Raihan, Presents &quot;Next Generation Content Delivery Platforms&quot; at Interactive, SMS &amp; Mobile Marketing Conference at Conrad Hotel, Bangkok </span></p><p><span class="style1"><b>04/01/2005</b> Vervata gain Thailand Board of Industry privilages as a promoted activity developing Enterprise Software and Digtal Content </span></p><p><span class="style1"><b> 01/10/2004</b> Vervata commisioned to develop WLAN communication manager to be preloaded on Nokia 9550 Communicator in Thailand </span></p><p><span class="style1"><b>01/05/2004 </b>Vervata comissioned to develop official Disney themes and skins for Symbian devices</span></p><p><span class="style1"><b>04/03/2004</b> Vervata to develop QQ Pocket PC and J2ME GPRS based IM messaging servers and multi language IM system for MWEBs Sanook.com portal </span></p>'

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)
}
window.onload=populate

function scrollscroller(){

if (iedom){
if (parseInt(cross_scroller.style.top)>(actualheight*(-1)+8))
cross_scroller.style.top=parseInt(cross_scroller.style.top)-copyspeed+"px"
else
cross_scroller.style.top=parseInt(scrollerheight)+8+"px"
}
else if (document.layers){
if (ns_scroller.top>(actualheight*(-1)+8))
ns_scroller.top-=copyspeed
else
ns_scroller.top=parseInt(scrollerheight)+8
}
}

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>')
}
}
}

