//Specify the marquee's width (in pixels)
var marqueewidth=535
//Specify the marquee's height (in pixels, pertains only to NS)
var marqueeheight=20
//Specify the marquee's scroll speed (larger is faster)
var speed=4
//Specify the marquee contents
var marqueecontents='Staffed by friendly and approachable staff CQMS Ltd can help assist you in meeting all your Health and Safety requirements&hellip; CALL 0845 6031245 to take the first step in refreshing your Health and Safety management system to help reduce your costs, effectively manage risks, improve your reputation and more importantly to help you prevent, rather than just mitigate, the risks associated with your work activities&hellip;'

if (document.all)
document.write('<marquee scrollAmount='+speed+' style="width:'+marqueewidth+'">'+marqueecontents+'</marquee>')

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",450)
intializemarquee()
}
}

function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write('<nobr>'+marqueecontents+'</nobr>')
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.width
scrollit()
}

function scrollit(){
if (document.cmarquee01.document.cmarquee02.left>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.left-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.left=marqueewidth
scrollit()
}
}

window.onload=regenerate2

<!--
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->

function validate() 
{
		if (frmEnquiry.Name.value == '') 
	{
		alert('Please enter your name.');		
		event.returnValue=false;
		return false;
	}
	
	if (frmEnquiry.Company.value == '') 
	{
		alert('Please enter the name of your Company.');
		event.returnValue=false;
		return false;
	}
	
	if (frmEnquiry.Address.value == '') 
	{
		alert('Please enter your address.');
		event.returnValue=false;
		return false;
	}
	
	if (frmEnquiry.PostCode.value == '') 
	{
		alert('Please add your Post Code.');
		event.returnValue=false;
		return false;
	}
	
	if (frmEnquiry.Telephone.value == '') 
	{
		alert('Please enter a phone number without any spaces.');
		event.returnValue=false;
		return false;
	}
	
	if (frmEnquiry.Email.value == '') 
	{
		alert('Please enter an email address.');
		event.returnValue=false;
		return false;
	}
	
	if (frmEnquiry.Comments.value == '') 
	{
		alert('Please enter your enquiry details.');
		event.returnValue=false;
		return false;
	}
	
		if (frmEnquiry.WebsiteLead.options[0].selected)
	{
		alert('Please tell us how you found the website');
		event.returnValue=false;
		return false;
	}
	
}
