function footer(){
document.write("<IMG SRC='http://www.cumbriaweb.org.uk/savestats2.php?site=cm'>");
}
function today() {
// will display the current date within the document
var months=new Array(12);
 months[0]="January";
 months[1]="February";
 months[2]="March";
 months[3]="April";
 months[4]="May";
 months[5]="June";
 months[6]="July";
 months[7]="August";
 months[8]="September";
 months[9]="October";
 months[10]="November";
 months[11]="December";

var time=new Date();
var day=time.getDate();
var lmonth=months[time.getMonth()];
// var month=time.getMonth() + 1;
var year=time.getYear();
if (year < 2000) {
// some browsers use years since 1900
// while others contain the full 4 digit year
year += 1900;
}
document.write(day + " " + lmonth + ", " + year);
}  
function viewthumb(img_url,img_width,img_height,title,description)
{
if (parseInt(navigator.appVersion) >= 4)
	{
	var window_width = (img_width + 20);
	var window_height = (img_height + 62);
	var sw = screen.width;
	var sh = screen.height;
	var window_left = ((sw/2) - (window_width/2) - 16);
	var window_top = ((sh/2) - (window_height/2) - 20);
	newwin = open("","newwindow","width="+ window_width +",height="+ window_height +",scrollbars=no,toolbar=no,directories=no,menubar=no,resizable=no,status=no,left="+ window_left +",top="+ window_top +",screenx="+ window_left +",screeny="+ window_top);
	}
	
else
	{
	var window_width = (img_width + 25);
	var window_height = (img_height + 65);
	newwin= open("","newwindow","width="+ window_width +",height="+ window_height +",scrollbars=no,toolbar=no,directories=no,menubar=no,resizable=no,status=no,left=200,top=100,screenx=200,screeny=100");
	}
	
newwin.document.open();

var newpage = '<HTML><HEAD><TITLE>'+title+'</TITLE></HEAD><BODY BGCOLOR="#FFFFFF" MARGINWIDTH="0" MARGINHEIGHT="0" LEFTMARGIN="0" TOPMARGIN="0">';

newpage += '<CENTER><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0"><TR><TD COLSPAN="3"><IMG SRC="images/td_spacer_three.gif" WIDTH=1 HEIGHT=1 BORDER="0"></TD></TR><TR><TD COLSPAN="3"><IMG SRC="space1.gif" WIDTH=1 HEIGHT=1 BORDER="0"></TD></TR><TR><TD BGCOLOR="#FABB04" COLSPAN="3" VALIGN="BOTTOM"><IMG SRC="space1.gif" WIDTH=1 HEIGHT=1 BORDER="0"></TD></TR><TR><TD BGCOLOR="#FABB04" ALIGN="RIGHT"><IMG SRC="space1.gif" WIDTH=1 HEIGHT=1 BORDER="0"></TD><TD BGCOLOR="#FFFFFF"><TABLE><TR><TD><IMG SRC="'+img_url+'" WIDTH='+img_width+' HEIGHT='+img_height+' ALT="'+title+'" BORDER="0"></TD></TR></TABLE></TD><TD BGCOLOR="#FABB04" ALIGN="LEFT"><IMG SRC="space1.gif" WIDTH=1 HEIGHT=1 BORDER="0"></TD></TR><TR><TD BGCOLOR="#FABB04" VALIGN="TOP" COLSPAN="3"><IMG SRC="space1.gif" WIDTH=1 HEIGHT=1 BORDER="0"></TD></TR>';

newpage += '<TR><TD COLSPAN="3"><FONT FACE="Arial,Helvetica" SIZE="-1"><P ALIGN="CENTER">'+description+'</P></FONT></TD></TR>';

newpage += '<TR><TD COLSPAN="3"><IMG SRC="space3.gif" WIDTH=1 HEIGHT=1 BORDER="0"></TD></TR>';

newpage += '<TR><TD COLSPAN="3"><CENTER><FORM><INPUT TYPE="BUTTON" VALUE="Close Window" onClick="self.close()" STYLE="cursor: hand;"></FORM></CENTER></TD></TR></TABLE></CENTER></BODY></HTML>';

newwin.document.write(newpage);
newwin.document.close();  
newwin.focus();
}


