var marqueewidth="240px"
var marqueeheight="140px"
var marqueespeed=1
var pauseit=1
document.write("<link rel='stylesheet' type='text/css' href='flex-middle.css'/>"); 
var marqueecontent='<div class="line"> • <b><a href="pdf/speciality-product-fme/F-MAT.pdf" target="blank" class="index">Matt Polyester Film (F-MAT)</a></b><br><br> • <b><a href="pdf/speciality-product-fme/F-HTF.pdf" target="blank" class="index">Polyester Film (F-HTF) for Hot <br>&nbsp;&nbsp; Stamping Foils Application</a></b><br><br> • <b><a href="pdf/speciality-product-fme/F-IST.pdf" target="blank" class="index">Polyester Film (F-IST) For <br>&nbsp;&nbsp; Lidding Application</a></b><br><br> • <b><a href="pdf/speciality-product-fme/F-MAT-M.pdf" target="blank" class="index">Matt Metallized Polyester Film <br>&nbsp;&nbsp; (F-MAT-M)</a></b><br><br> • <b><a href="pdf/speciality-product-fme/F-XLR.pdf" target="blank" class="index">Extra Clear Polyester Film <br>&nbsp;&nbsp; (F-XLR)</a></b><br><br> • <b><a href="pdf/speciality-product-fme/F-XLR-M.pdf" target="blank" class="index">Extra Clear Metallized Polyester <br>&nbsp;&nbsp; Film (F-XLR-M)</a></b><br><br> • <b><a href="pdf/speciality-product-fme/F-MTG-PZ.pdf" target="blank" class="index">High Barrier Metallized Polyester <br>&nbsp;&nbsp; Film (F-MTG-PZ)</a></b><br><br> • <b><a href="pdf/speciality-product-fme/F-ESB.pdf" target="blank" class="index">Easy Stackable Polyester Film <br>&nbsp;&nbsp; (F-ESB)</a><br><br></b> • <b><a href="pdf/speciality-product-fme/F-EMB.pdf" target="blank" class="index">Flex Direct Embossable Film<br>&nbsp;&nbsp; (F-EMB)</a><br><br></b>• <b><a href="pdf/speciality-product-fme/F-LLP-M.pdf" target="blank" class="index">Met Pet Film For Large <br>&nbsp;&nbsp; (LIQUID/PASTE) Packaging<br>&nbsp;&nbsp; (F-LLP-M)</a><br><br></b></div><div class="pclass"><b>&nbsp; &nbsp;  &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &nbsp; &nbsp; &nbsp; &nbsp;- &curren; - &curren; - &curren; - </b></div>'

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()",20)
}
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:0px;top:0px;width:100%;">')
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>')
}
}
}