
//script for scrolling the text in table compatible for both browsers
//Specify the marquee's width (in pixels)

var marqueewidth=150

//Specify the marquee's height

var marqueeheight=90

//Specify the marquee's scroll speed (larger is faster)

var speed=1

//Specify the marquee contents

var marqueecontents='<p align="justify" style="padding-left:5" class="newscroll">Formed in 1957, The British Computer Society is the leading industry body for IT professionals. A growing membership of over 40,000 in over 100 countries with a target of 100,000 by 2006. Chartered body, and confers Chartered Engineer, Chartered Scientist or Chartered IT Professional status on members. The BCS provides the tools and support for IT professionals to continuously develop their own skills and competences. The International Computer Driving Licence IT skills qualification is available from the BCS in many countries in South East Asia. The European Computer Driving Licence IT skills qualification. Over 1,000,000 candidates </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",0)
			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// JavaScript Document