<!--//Set the two dates
  var myWidth = 0; if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth; myHeight = window.innerHeight;}
 else if( document.documentElement &&
      ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth; myHeight = document.documentElement.clientHeight;}
 else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth; myHeight = document.body.clientHeight; }
var marqueewidth= (myWidth-40)+"px";
var today=new Date(); var claimdateukyear = today.getYear();//get the current year for uk
var claimdateeuroyear = today.getYear();//get the current year for europe
if (claimdateukyear < 2000) claimdateukyear = claimdateukyear + 1900;
if (claimdateeuroyear < 2000) claimdateeuroyear = claimdateeuroyear + 1900;
var claimdate=new Date(claimdateukyear, 11, 31, 23, 59, 59) //last date in yyyy,mm,dd format
//just change this date to make it deadline for june etc.
var claimdateeuro=new Date(claimdateeuroyear, 05, 30, 23, 59, 59) //last date in yyyy,mm,dd format
//just change this date to make it deadline for june etc.
//Set 1 day in milliseconds
var one_day=1000*60*60*24;
//Specify the marquee's width (in pixels)
//var marqueewidth= "758px";
//Specify the marquee's height
var marqueeheight="20px";
//Specify the marquee's marquee speed (larger is faster 1-10)
var marqueespeed=1;
//configure background color:
var marqueebgcolor="";
//Pause marquee onMousever (0=no. 1=yes)?
var pauseit=1;
//Specify the marquee's content (don't delete <nobr> tag)
//Keep all content on ONE line, and backslash any single quotations (ie: that\'s great):
var space="&nbsp;&nbsp;";
var marqueecontent = " ";
//check if the todays date is past the claim date
if(today > claimdateeuro && today<=claimdate)
{//Calculate difference btw the two dates, and convert to days
	marqueecontent = "<span class='scroller1'>You have less than <span class='scroller2'>" + Math.ceil((claimdate.getTime() - today.getTime())/(one_day))+ " days</span> left to submit your "  + (claimdateukyear - 1) + "/" + claimdateukyear   + " UK VAT refund claims!</span>"
}
else
if(today<claimdateeuro)
{//Calculate difference btw the two dates, and convert to days
 marqueecontent = "<span class='scroller1'>You have less than <span class='scroller2'>" + Math.ceil((claimdateeuro.getTime() - today.getTime())/(one_day))+ " days</span> left to submit your " + (claimdateeuroyear -1)   +" European VAT refund claims!</span>"
}
line =  "<span class='scroller2'>We specialize in overseas CONVENTIONS, CORPORATE EVENTS and TRADE SHOWS.</span>"
line2 = "<span class='scroller2'>Important EC VAT rule changes coming up for service industries!</span>"
//DO NOT Remove the <nobr> tag
marqueecontent = "<nobr>"+ line2 + space +marqueecontent + space + line + space+ line2 + space + marqueecontent + space + line +  space+ line2 + space +marqueecontent + space+ line +  space+ line2 + space +marqueecontent +  space+line+  space+ line2 + space +marqueecontent +  space+line+ "</nobr>"

////NO NEED TO EDIT BELOW THIS LINE////////////
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
if (iedom)
document.write('<span id="temp" style="visibility:hidden;position:absolute;top:-100px;left:-9000px">'+marqueecontent+'</span>')
var actualwidth=''
var cross_marquee, ns_marquee

function populate(){
if (iedom){
cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee
cross_marquee.style.left=parseInt(marqueewidth)+8+"px"
cross_marquee.innerHTML=marqueecontent
actualwidth=document.all? temp.offsetWidth : document.getElementById("temp").offsetWidth
}
else if (document.layers){
ns_marquee=document.ns_marquee.document.ns_marquee2
ns_marquee.left=parseInt(marqueewidth)+8
ns_marquee.document.write(marqueecontent)
ns_marquee.document.close()
actualwidth=ns_marquee.document.width
}
lefttime=setInterval("scrollmarquee()",20)
}
window.onload=populate

function scrollmarquee(){
if (iedom){
if (parseInt(cross_marquee.style.left)>(actualwidth*(-1)+8))
cross_marquee.style.left=parseInt(cross_marquee.style.left)-copyspeed+"px"
else
cross_marquee.style.left=parseInt(marqueewidth)+8+"px"

}
else if (document.layers){
if (ns_marquee.left>(actualwidth*(-1)+8))
ns_marquee.left-=copyspeed
else
ns_marquee.left=parseInt(marqueewidth)+8
}
}

if (iedom||document.layers){
with (document){
document.write('<table border="0" cellspacing="0" cellpadding="0"><td>')
if (iedom){
write('<div style="position:relative;width:'+marqueewidth+';height:'+marqueeheight+';overflow:hidden">')
write('<div style="position:absolute;width:'+marqueewidth+';height:'+marqueeheight+';background-color:'+marqueebgcolor+'" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed">')
write('<div id="iemarquee" style="position:absolute;left:0px;top:0px"></div>')
write('</div></div>')
}
else if (document.layers){
write('<ilayer width='+marqueewidth+' height='+marqueeheight+' name="ns_marquee" bgColor='+marqueebgcolor+'>')
write('<layer name="ns_marquee2" left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed"></layer>')
write('</ilayer>')
}
document.write('</td></table>')
}
}
//-->
