
//Specify the marquee's width (in pixels)
var marqueewidth=185
//Specify the marquee's height
var marqueeheight=100
//Specify the marquee's scroll speed (larger is faster)
var speed=1

//Specify the marquee contents
var marqueecontents='<font calss = smallhead><p align="left">HCL</br>GE Capital</br>Perot</br>Sapient</br>Ericsson</br>Infogain</br>Xansa</br>Gap International</br>Jindal Strips Ltd</br>Innodata</br>Network Programs India Ltd</br>Shoppers Stop</br>Bharti Telesonic (A Bharti Enterprise)</br>Convergys</br>Orient Crafts Ltd.</br>Gap International</br>DLF</br>Omaxe</br>Jindal steel</br>Magppie</br>Rotary International – NGO</br>Sulzlon</br>Reliance Energy</br></font>'

if (document.all)
document.write('<marquee direction="up" scrollAmount='+speed+' style="width:'+marqueewidth+';height:'+marqueeheight+'">'+marqueecontents+'</marquee>')

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",450)
intializemarquee()
}
}

function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write(marqueecontents)
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.height
scrollit()
}

function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}
window.onload=regenerate2

