// Convert document.lastModified to 'dd mmmm yyyy' or similar
function modDate(z) {
x = new Date(z);
x = x.toLocaleString();
y = x.indexOf(":");
x = x.slice(0,y - 3);
y = x.indexOf(",");
z = x.length;
w = x.slice(y + 1,z);
document.write(w)
}

// onClick pop-ups (add new ones to the end of the array and call them by index number)
function jAlert(z) {
tArray = new Array("He Already Knows What You Want To Ask.","Jesus Has Changed Your Life.\r\rSave Changes ?","The Spirit Has Moved.\r\rClick OK To Follow.","Thanks Robin");
alert(tArray[z])
}

// Countdown Timer (z=Name of Event(ie 'Christmas'), y=Date of Event(ie 'December 25, 2006'))
function cDown(z,y) {
var urodz = new Date(y);
var now = new Date();
var ile = urodz.getTime() - now.getTime();
var dni = Math.floor(ile / (1000 * 60 * 60 * 24));
if (dni > 1)
document.write(dni + " days to go until " + z)
else if (dni == 1)
document.write("Only two days to go until " + z)
else if (dni == 0)
document.write("Only one day to go until " + z)
else if (dni == -1)
document.write("Today is " + z);
else
document.write(z + " is here");
}

// Open External links in a new tab works in everything except older ie
function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("class") == "ext")
     anchor.target = "_newtab";
 }
}
window.onload = externalLinks;


// Image Protector
function piclik(x)
	{
	document.getElementById(x).style.display='none';
	alert('All Photos Are Copyright St Matthews Church\nIf you would like copies please contact us\n\nPlease reload this page to view the photo again.')
	}

// Front Page Random Image Selector
function randim(x)
{
var picnum = 32;
var whichImg= Math.floor(Math.random()*picnum);
var img=new Array(picnum)
img[0]="000.jpg";
img[1]="110320-175032.jpg";
img[2]="110320-192838.jpg";
img[3]="110320-192913.jpg";
img[4]="110320-193054.jpg";
img[5]="110320-193117.jpg";
img[6]="110320-193215.jpg";
img[7]="110320-200028.jpg";
img[8]="110320-200152.jpg";
img[9]="110320-201812.jpg";
img[10]="110619-124234.jpg";
img[11]="110619-124251.jpg";
img[12]="110619-124304.jpg";
img[13]="110619-124313.jpg";
img[14]="110619-124325.jpg";
img[15]="110619-124340.jpg";
img[16]="110619-124353.jpg";
img[17]="110619-124401.jpg";
img[18]="110619-124437.jpg";
img[19]="110619-135933.jpg";
img[20]="110619-135948.jpg";
img[21]="110619-140032.jpg";
img[22]="110619-140101.jpg";
img[23]="110710-120835.jpg";
img[24]="110710-120844.jpg";
img[25]="110710-121031.jpg";
img[26]="110710-121107.jpg";
img[27]="110710-121116.jpg";
img[28]="110710-121146.jpg";
img[29]="110710-131451.jpg";
img[30]="110710-131506.jpg";
img[31]="110710-131529.jpg";
	document.write("<img class=dex src='photos/" + img[whichImg] + "' height=245 id=p1 onmousedown=javascript:piclik('p1') />");
}


