document.writeln('<html>');
document.writeln('<head>');

if (document.images) {

	Email_on=new Image();
	Email_on.src="../graphics/foot-email1.gif";
	Email_off=new Image();
	Email_off.src="../graphics/foot-email0.gif";

	Home_on=new Image();
	Home_on.src="../graphics/foot-home1.gif";
	Home_off=new Image();
	Home_off.src="../graphics/foot-home0.gif";

	Top_on=new Image();
	Top_on.src="../graphics/foot-top1.gif";
	Top_off=new Image();
	Top_off.src="../graphics/foot-top0.gif";

}
function turnOn(imageName) {
	if(document.images) {
		document[imageName].src=eval(imageName+"on.src");
	}
}
function turnOff(imageName){
	if(document.images) {
		document[imageName].src=eval(imageName+"off.src");
	}
}

function LastModDate() {
	var mnth = new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
	var lastMod = new Date(document.lastModified);
	var modDate = lastMod.getDate() + "-";
	modDate += mnth[lastMod.getMonth()] + "-";
	modDate += lastMod.getFullYear();
	return(modDate);
}

document.writeln('</head>');
document.writeln('<body>');
document.writeln('<p>');
document.writeln('<div align=center>');
document.writeln('<table border=0 cellspacing=0 cellpadding=0 height=18 width=80%>');
document.writeln('<tr><td width=95% background=\"../graphics/menu-foot-fill.gif\"><a href=\"http:\/\/www.ahackett.co.uk\" target=\"_blank\"><img src=\"../graphics/foot-ah.gif\" border=0></a></td>');
document.writeln('<td><A HREF=\"mailto:info@sandwelltraining.com?subject=Website Enquiry\"');
document.writeln('onMouseOver=\"turnOn(\'Email_\'), onMouseOver=window.status=\'E-mail Sandwell Training Association\'; return true\"');
document.writeln('onMouseOut=\"turnOff(\'Email_\'), onMouseOut=window.status=\' \'; return true\">');
document.writeln('<image name=\"Email_\" src=\"../graphics/foot-email0.gif\" border=0 alt=\"Contact us by e-mail.\"></a></td>');

document.writeln('<td><A HREF=\"../index.html\" target=\"_top\" onMouseOver=\"turnOn(\'Home_\'),');
document.writeln('onMouseOver=window.status=\'Sandwell Training Association Home Page\'; return true\"');
document.writeln('onMouseOut=\"turnOff(\'Home_\'), onMouseOut=window.status=\' \'; return true\">');
document.writeln('<image name=\"Home_\" src=\"../graphics/foot-home0.gif\" border=0 alt=\"Go to our Home Page\"></a></td>');

document.writeln('<td><A HREF=\"#top\" onMouseOver=\"turnOn(\'Top_\'),');
document.writeln('onMouseOver=window.status=\'Top of this Page\'; return true\"');
document.writeln('onMouseOut=\"turnOff(\'Top_\'), onMouseOut=window.status=\' \'; return true\">');
document.writeln('<image name=\"Top_\" src=\"../graphics/foot-top0.gif\" border=0 alt=\"Go to Top of this Page\"></a></td>');

document.writeln('</tr>');
document.writeln('</table>');

document.writeln('<table width=80%><tr><td><font style=\"font-size: 7pt; color: gray;\">');
document.writeln('Last modified: '+LastModDate());
document.writeln('</td></tr></table>');

document.writeln('</body>');
document.writeln('</html>');

