
//Specify the marquee's width (in pixels)
var marqueewidth=195
//Specify the marquee's height
var marqueeheight=300
//Specify the marquee's scroll speed (larger is faster)
var speed=1

//Specify the marquee contents
var marqueecontents='<p align="center"><img src="images/logoresize.jpg"></p><p align="justify"><b><font color=red>QUALITY POLICY</font></b></p><p align="justify">EXSERVICEMEN SECURITY & DETECTIVE BUREAU COMMITED FOR "TOTAL COUSTOMER SATISFACTION AND SOCIAL SECURITY"<br><br><font color=red>This is achived by<br>*</font> Providing high quality and reliable security services to our houseland as well as our motherland<br><br><font color=red>*</font>Providing well built security arrangements by deploying professionally trained security personnel and ex-servicemen to all clients.<br><br><font color=red>*</font>Continually improving the effectiveness of the quality management system and its processes.</p>'

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",600)
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

