var marqueewidth="240" //Specify the marquee's width (in pixels)
var marqueeheight="230" //Specify the marquee's height
var mmarqueespeed=1 //Specify the marquee's marquee speed (larger is faster 1-10)
var pauseit=1 //Pause marquee onMousever (0=no. 1=yes)?

//Specify the marquee's content
//Keep all content on ONE line, and backslash any single quotations (ie: that\'s great):

var mComment1 = "Market Pulse announced the launch of a syndicated retail track for kitchen appliances. This track is the third syndicated track being offered by Market Pulse after mpELECTRIC for building electricals and the DTH track.<br><br><br>"

var mComment2 = "Customized retail performance tracking has now been extended to packaged foods and beverages.<br><br><br>"

var mComment3 = "A new sales development tool – Locator Service has been introduced by Market Pulse to help clients bridge distribution gaps. Clients in specified product & service categories can now very quickly identify key markets, their sales potential and the leading retailers in each of them.<br><br><br>"

var mComment4 = "Santosh Kumar was promoted to the rank of Sr. Field Officer. He is now based in Kolkata and will look after field operations in West Bengal, North eastern states and Orissa.<br><br><br>"

var mComment5 = "Anwar Q. Ghazi is now looking after all field operations in South India. He has appointed Noorullah as Asstt. Manager - Operations at Chennai.<br><br><br>"

var mComment6 = "CATI facility has been upgraded to handle multi-lingual surveys. In view of the tremendous response from clients, this facility will be expanded to 25 seats over the next 2 months<br><br><br>"

var mComment7 = "Market Pulse announced the launch of a syndicated retail track for Digital Camera. This track is the fourth syndicated track being offered by Market Pulse after mpELECTRIC for building electricals,DTH track and the kitchen appliances track<br><br><br>"

var mmarqueecontent='<p align="justify" style=font-family:verdana;font-size:9pt;>' + mComment1 + mComment2 + mComment3 + mComment4 + mComment5 +mComment6 + mComment7



////NO NEED TO EDIT BELOW THIS LINE////////////

mmarqueespeed=(document.all)? mmarqueespeed : Math.max(1, mmarqueespeed-1) //slow speed down by 1 for NS
var copyspeed=mmarqueespeed
var pausespeed=(pauseit==0)? copyspeed: 0
var iedom=document.all||document.getElementById
var actualheight=''
var cross_marquee

function mpopulate(){
	cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee
	cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
	cross_marquee.innerHTML=mmarqueecontent
	actualheight=cross_marquee.offsetHeight
	lefttime=setInterval("scrollmarquee()",20)
}

function scrollmarquee(){
	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"
}

with (document){
	if (iedom){
		write('<div style="position:relative;width:'+marqueewidth+';height:'+marqueeheight+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=mmarqueespeed">')
		write('<div id="iemarquee" style="position:absolute;left:0px;top:0px;width:100%;">')
		write('</div></div>')
	}
}

