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
		actualheight=ns_marquee.document.height

	}
	lefttime=setInterval("scrollmarquee()",20)
}

function populate1(){
	if (iedom){
		cross_marquee1=document.getElementById? document.getElementById("iemarquee1") : document.all.iemarquee
		cross_marquee1.style.top=parseInt(marqueeheight1)+8+"px"
//		cross_marquee.innerHTML=marqueecontent
		actualheight1=cross_marquee1.offsetHeight
	}
	else if (document.layers){
		ns_marquee1=document.ns_marquee1.document.ns_marquee21
		ns_marquee1.top=parseInt(marqueeheight1)+8
		actualheight1=ns_marquee1.document.height

	}
	lefttime=setInterval("scrollmarquee1()",20)
}

function populate2(){
	if (iedom){
		cross_marquee2=document.getElementById? document.getElementById("iemarquee2") : document.all.iemarquee
		cross_marquee2.style.top=parseInt(marqueeheight2)+8+"px"
//		cross_marquee.innerHTML=marqueecontent
		actualheight2=cross_marquee2.offsetHeight
	}
	else if (document.layers){
		ns_marquee2=document.ns_marquee2.document.ns_marquee22
		ns_marquee2.top=parseInt(marqueeheight2)+8
		actualheight2=ns_marquee2.document.height

	}
	lefttime=setInterval("scrollmarquee2()",20)
}

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
	}
}
function scrollmarquee1(){

if (iedom){
	if (parseInt(cross_marquee1.style.top)>(actualheight1*(-1)+8))
		cross_marquee1.style.top=parseInt(cross_marquee1.style.top)-copyspeed1+"px"
	else
		cross_marquee1.style.top=parseInt(marqueeheight1)+8+"px"
	}

	else if (document.layers){
		if (ns_marquee1.top>(actualheight1*(-1)+8))
			ns_marquee1.top-=copyspeed1
		else
			ns_marquee1.top=parseInt(marqueeheight1)+8
	}
}

function scrollmarquee2(){

if (iedom){
	if (parseInt(cross_marquee2.style.top)>(actualheight2*(-1)+8))
		cross_marquee2.style.top=parseInt(cross_marquee2.style.top)-copyspeed2+"px"
	else
		cross_marquee2.style.top=parseInt(marqueeheight2)+8+"px"
	}

	else if (document.layers){
		if (ns_marquee2.top>(actualheight2*(-1)+8))
			ns_marquee2.top-=copyspeed2
		else
			ns_marquee2.top=parseInt(marqueeheight2)+8
	}
}
