// JavaScript News


//Specify the marquee's width (in pixels)
var marqueewidth="220px"
//Specify the marquee's height
var marqueeheight="150px"
//Specify the marquee's marquee speed (larger is faster 1-10)
var marqueespeed=1
//Pause marquee onMousever (0=no. 1=yes)?
var pauseit=1

//Specify the marquee's content
//Keep all content on ONE line, and backslash any single quotations (ie: that\'s great):

var marqueecontent='<span style="display:block; margin:0px; padding:0px;font-style:normal"><p>When I joined WinSys, during the induction, I saw hard work, dedication, passion and commitment very often. Now I am seeing it everywhere with the leaders, people and processes at all levels. I am proud to be the very first employee of WinSys. Come onboard with us to experience the difference from the crowd.<br/><b><em>Revathi, Senior Executive HR & Talent Acquisition.</em></b><br/>...............................................................</p><br/><p></p><p>People, process and technology are always critical for an IT company and there should be radical improvement across the organization. WinSys has it.<br/><b><em>Jayachandra, Operations Manager.</em></b><br/>...............................................................</p><br/><p>I really enjoy working with the young and energetic team here. The senior management team is well experienced in technology and business and they always train us on many career development oriented and not just technical. There is a learning everyday …so keep learning. It’s always a pleasure working with WinSys.<br/><b><em>Chandra Mouli, Senior Software Engineer, ISG Group</em></b><br/>...............................................................</p><p></p><p>Great to place to work with a pleasant working environment, no barriers and very friendly and there is immense scope to explore myself professionally and personally.<br/><b><em>J Srinivas Reddy, Software Engineer, ISG Group.</em></b><br/>...............................................................</p><p></p><p>Working atmosphere and senior management support coupled commitment is very important for a good administration across Organization. My job is easy and I am comfortable doing it in WinSys.<br/><b><em>Venkatesh, Executive Administration.</em></b><br/>...............................................................</p><p></p><p>In my 3 years of IT career, I have seen 2 organizations; but the work style and people management in WinSys is very conducive and just awesome. I love WinSys.<br/><b><em>Ashish Lunagaria Ramesh Bhai, Senior Software Engineer, PSG Group.</em></b><br/>...............................................................</p><p></p><p>I joined WinSys very recently. Quick turnaround, good people management and employee relationship is what I am seeing everywhere.<br/><b><em>Sita Sudunagunta, Senior Software Engineer,PSG Group.</em></b><br/>...............................................................</p><p></p><p>Talk less and do more …productively more – is what is visible in WinSys. I am proud to be part of this young and vibrant team.<br/><b><em>Anilkumar Thanga, Senior Software Engineer.</em></b><br/>...............................................................</p><p></p><p>I have worked with the executive leaders for almost four years; Let it be technology or people or process or client management - what I have learnt from him is what I am practicing today. I am proud I am still associated with WinSys.<br/><b><em>Senior Oracle Expert, Bangalore.</em></b><br/>...............................................................</p><p></p><p>True leaders never rest and we witness interacting with such leaders in WinSys. We designed from scratch 4 months ago and today we have developed a huge web based product / application which can handle millions of transactions at any moment. Now we remember Mark Twain who said “All you need in this life is ignorance and confidence; Then Success is Yours”.<br/><b><em>AHAMS Application / Product Design & Development Team.</em></b></p></span>'


////NO NEED TO EDIT BELOW THIS LINE////////////

marqueespeed=(document.all)? marqueespeed : Math.max(1, marqueespeed-1) //slow speed down by 1 for NS
var copyspeed=marqueespeed
var pausespeed=(pauseit==0)? copyspeed: 0
var iedom=document.all||document.getElementById
var actualheight=''
var cross_marquee, ns_marquee

function populate(){
if (iedom){
cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee
cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
cross_marquee.innerHTML=marqueecontent
actualheight=cross_marquee.offsetHeight
}
else if (document.layers){
ns_marquee=document.ns_marquee.document.ns_marquee2
ns_marquee.top=parseInt(marqueeheight)+8
ns_marquee.document.write(marqueecontent)
ns_marquee.document.close()
actualheight=ns_marquee.document.height
}
lefttime=setInterval("scrollmarquee()",25)
}
window.onload=populate

function scrollmarquee(){

if (iedom){
if (parseInt(cross_marquee.style.top)>(actualheight*(-1)+8))
cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px"
else
cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
}
else if (document.layers){
if (ns_marquee.top>(actualheight*(-1)+8))
ns_marquee.top-=copyspeed
else
ns_marquee.top=parseInt(marqueeheight)+8
}
}

if (iedom||document.layers){
with (document){
if (iedom){
write('<div style="position:relative;width:'+marqueewidth+';height:'+marqueeheight+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed">')
write('<div id="iemarquee" style="position:absolute;left:10px;top:0px;width:90%;">')
write('</div></div>')
}
else if (document.layers){
write('<ilayer width='+marqueewidth+' height='+marqueeheight+' name="ns_marquee">')
write('<layer name="ns_marquee2" width='+marqueewidth+' height='+marqueeheight+' left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed"></layer>')
write('</ilayer>')
}
}
}
                               