

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location.href='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}


function displayDate()
{
var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var hours=mydate.getHours()
var minutes=mydate.getMinutes()
var seconds=mydate.getSeconds()
var dn="am"
if (hours>=12)
dn="pm"
if (hours>12){
hours=hours-12
}
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("<small><font color='#FFFFFF' size=1 face='Arial'><b>"+dayarray[day]+" "+daym+" "+montharray[month]+" "+year+" - "+hours+":"+minutes+" "+dn+" </b></font></small>")
}



//CN Insert Greeting Ver 1.0.2 - CEA CrystalNet
function insertGreeting() {
	CN_Now = new Date();
	localtime = CN_Now.toString();
	CN_Hours = CN_Now.getHours();
	if (CN_Hours < 12) {
		document.write("Good Morning and welcome to Kirk Newsholme Online");
	} else {
		if (CN_Hours >= 12 && CN_Hours < 18)  {
				document.write("Good Afternoon and welcome to Kirk Newsholme Online");
		} else {
			if (CN_Hours >= 18) {
				document.write("Good Evening and welcome to Kirk Newsholme Online");
				} else {
				document.write("Good Day and welcome to Kirk Newsholme Online");
			}
		}
	}
}







var pausecontent=new Array()

pausecontent[0]='<p><a href="http://www.kirknewsholme.co.uk/news_apr11_contracts-finder.htm">Business Link - contracts finder</a><br>The government has launched Contract Finder - a more open system to assist SME&rsquo;s win contracts from government departments.<br><br></p> '

pausecontent[1]='<p><a href="http://www.kirknewsholme.co.uk/news_apr11_retirement-age.htm">Retirement age</a><br>Our recent Newswire reported on changes to the law relating to retirement ages. Since the Newswire was published, further changes to the legislation have been made.<br><br></p> '

pausecontent[2]='<p><a href="http://www.kirknewsholme.co.uk/news_apr11_budget-reaction.htm">Round-Up Of Budget Reaction</a><br>Chancellor George Osborne delivered the 2011 Budget on 23 March, saying he intended to &quot;put fuel into the tank of the British economy&quot;.<br><br></p> '

pausecontent[3]='<p><a href="http://www.kirknewsholme.co.uk/news_apr11_online-filing.htm">Online Filing Plans Under Fire</a><br>Government plans to impose online filing on all the main businesses taxes have been criticised by tax campaigners.<br><br></p> '

pausecontent[4]='<p><a href="http://www.kirknewsholme.co.uk/news_apr11_hmrc-website.htm">HMRC Seeks Views On Website</a><br>HM Revenue &amp; Customs (HMRC) has launched an online survey of its website, www.hmrc.gov.uk.<br><br></p> '

pausecontent[5]='<p><a href="http://www.kirknewsholme.co.uk/news_apr11_tax-benefits.htm">R&amp;D Brings Tax Benefits</a><br>Thousands of companies are benefiting from research and development (R&amp;D) tax credits, according to new figures from HM Revenue &amp; Customs (HMRC).<br><br></p> '

pausecontent[6]='<p><a href="http://www.kirknewsholme.co.uk/news_apr11_slash-red-tape.htm">Businesses Offered Chance To Slash Red Tape</a><br>Businesses are being urged to get involved in government moves to reduce the burden of red tape.<br><br></p> '

pausecontent[7]='<p><a href="http://www.kirknewsholme.co.uk/news_apr11_hire-apprentices.htm">Employers Set To Say &lsquo;You&rsquo;re Hired&rsquo; To More Apprentices</a><br>Business organisations have welcomed plans, announced in the March Budget, to increase the number of apprenticeships over the next four years.<br><br></p> '

pausecontent[8]='<p><a href="http://www.kirknewsholme.co.uk/news_apr11_record-keeping.htm">HMRC Told &lsquo;Go Back To Drawing Board&rsquo; On Record-Keeping Drive</a><br>A proposal by HM Revenue and Customs (HMRC) to start making large-scale checks of business records before relevant tax returns are submitted is misguided, according to the Chartered Institute of Taxation (CIOT).<br><br></p> '

/***********************************************
* Pausing up-down scroller- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/

function pausescroller(content, divId, divClass, delay){
this.content=content //message array content
this.tickerid=divId //ID of ticker div to display information
this.delay=delay //Delay between msg change, in miliseconds.
this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over scroller (and pause it if it is)
this.hiddendivpointer=1 //index of message array for hidden div
document.write('<div id="'+divId+'" class="'+divClass+'" style="position: relative; overflow: hidden"><div class="innerDiv" style="position: absolute; width: 100%" id="'+divId+'1">'+content[0]+'</div><div class="innerDiv" style="position: absolute; width: 100%; visibility: hidden" id="'+divId+'2">'+content[1]+'</div></div>')
var scrollerinstance=this
if (window.addEventListener) //run onload in DOM2 browsers
window.addEventListener("load", function(){scrollerinstance.initialize()}, false)
else if (window.attachEvent) //run onload in IE5.5+
window.attachEvent("onload", function(){scrollerinstance.initialize()})
else if (document.getElementById) //if legacy DOM browsers, just start scroller after 0.5 sec
setTimeout(function(){scrollerinstance.initialize()}, 500)
}

// -------------------------------------------------------------------
// initialize()- Initialize scroller method.
// -Get div objects, set initial positions, start up down animation
// -------------------------------------------------------------------

pausescroller.prototype.initialize=function(){
this.tickerdiv=document.getElementById(this.tickerid)
this.visiblediv=document.getElementById(this.tickerid+"1")
this.hiddendiv=document.getElementById(this.tickerid+"2")
this.visibledivtop=parseInt(pausescroller.getCSSpadding(this.tickerdiv))
//set width of inner DIVs to outer DIV's width minus padding (padding assumed to be top padding x 2)
this.visiblediv.style.width=this.hiddendiv.style.width=this.tickerdiv.offsetWidth-(this.visibledivtop*2)+"px"
this.getinline(this.visiblediv, this.hiddendiv)
this.hiddendiv.style.visibility="visible"
var scrollerinstance=this
document.getElementById(this.tickerid).onmouseover=function(){scrollerinstance.mouseoverBol=1}
document.getElementById(this.tickerid).onmouseout=function(){scrollerinstance.mouseoverBol=0}
if (window.attachEvent) //Clean up loose references in IE
window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null})
setTimeout(function(){scrollerinstance.animateup()}, this.delay)
}


// -------------------------------------------------------------------
// animateup()- Move the two inner divs of the scroller up and in sync
// -------------------------------------------------------------------

pausescroller.prototype.animateup=function(){
var scrollerinstance=this
if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){
this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px"
this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px"
setTimeout(function(){scrollerinstance.animateup()}, 50)
}
else{
this.getinline(this.hiddendiv, this.visiblediv)
this.swapdivs()
setTimeout(function(){scrollerinstance.setmessage()}, this.delay)
}
}

// -------------------------------------------------------------------
// swapdivs()- Swap between which is the visible and which is the hidden div
// -------------------------------------------------------------------

pausescroller.prototype.swapdivs=function(){
var tempcontainer=this.visiblediv
this.visiblediv=this.hiddendiv
this.hiddendiv=tempcontainer
}

pausescroller.prototype.getinline=function(div1, div2){
div1.style.top=this.visibledivtop+"px"
div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px"
}

// -------------------------------------------------------------------
// setmessage()- Populate the hidden div with the next message before it's visible
// -------------------------------------------------------------------

pausescroller.prototype.setmessage=function(){
var scrollerinstance=this
if (this.mouseoverBol==1) //if mouse is currently over scoller, do nothing (pause it)
setTimeout(function(){scrollerinstance.setmessage()}, 100)
else{
var i=this.hiddendivpointer
var ceiling=this.content.length
this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1
this.hiddendiv.innerHTML=this.content[this.hiddendivpointer]
this.animateup()
}
}

pausescroller.getCSSpadding=function(tickerobj){ //get CSS padding value, if any
if (tickerobj.currentStyle)
return tickerobj.currentStyle["paddingTop"]
else if (window.getComputedStyle) //if DOM2
return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top")
else
return 0
}
