//common scripts
function av_pop(w,h,url) { 
x = (screen.availWidth - w)/2;
y = (screen.availHeight - h)/2;

window.open(url, '', 'height='+h+',width='+w+',scrollbars=0,resizable=1,menubar=0,toolbar=0,status=0,location=0,directories=0,left='+x+',top='+y);
}

<!--
function av_linksafe(css,name,domain,linktext) {
document.write('<a class=\"' + css + '\" href=\"mailto:' + name + '@' + domain + '\">');
document.write(linktext + '</a>');
}

function ticktock(){
if (!document.getElementById)
return
var thelement=document.getElementById("date");
var now=new Date();
var day = now.getDate();
var months=new Array();
months[1]='January'
months[2]='February'
months[3]='March'
months[4]='April'
months[5]='May'
months[6]='June'
months[7]='July'
months[8]='August'
months[9]='September'
months[10]='October'
months[11]='November'
months[12]='December'
var mon=now.getMonth() + 1;
var yy = now.getYear();
var year = (yy < 1000) ? yy + 1900 : yy;
var hours=now.getHours();
var minutes=now.getMinutes();
var seconds=now.getSeconds();
var ampm="pm";
if (hours<12)
ampm="am"
if (hours>12)
hours=hours-12
if (hours==0)
hours=12
if (minutes<=9)
minutes="0"+minutes
if (seconds<=9)
seconds="0"+seconds
var show=day+" "+months[mon]+" "+year+" "+hours+":"+minutes+":"+seconds+ampm;
thelement.innerHTML=show;
setTimeout("ticktock()",1000)
}

// -->

function copyright(){
if (!document.getElementById)
return
var thelement=document.getElementById("copyright")
var today=new Date()
var yy = today.getYear();
var year = (yy < 1000) ? yy + 1900 : yy;
var showyear="&copy;Arlingclose 2004-"+year;
thelement.innerHTML=showyear;
}

<!-- Begin
// randomimage
var theImages = new Array()
theImages[0] = 'images/home_1.jpg'
theImages[1] = 'images/home_2.jpg'
theImages[2] = 'images/home_3.jpg'
theImages[3] = 'images/home_4.jpg'
theImages[4] = 'images/home_5.jpg'
theImages[5] = 'images/home_6.jpg'

var p = theImages.length;
var whichImage = Math.round(Math.random()*(p-1));
var preload = new Image();
preload.src = theImages[whichImage];
function showImage(){
document.write('<img src="'+theImages[whichImage]+'" id="homepic" alt="Arlingclose - Providing specialist capital financing advice to local authorities, the public sector, housing associations and education bodies" />');
}
//  End -->

