var theImages = new Array()

//Random-loading images
theImages[0] = '../Images/AllImages/FazalMosque.jpg';
theImages[1] = '../Images/AllImages/BaitulFutuh.jpg';

var j = 0
var p = theImages.length;
var preBuffer = new Array()

for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));

function showImage(){
if(whichImage==0){
document.write('<a href ="http://ahmadiyya.org.uk/mosques_uk/fazlmosque/" target="_blank"><img src="'+theImages[whichImage]+'" border=0 width=150 height=136></a>');
}
else if(whichImage==1){
document.write('<a href ="http://ahmadiyya.org.uk/mosques_uk/baitulfutuh/" target="_blank"><img src="'+theImages[whichImage]+'" border=0 width=150 height=136></a>');
}

}


function SubmitForm()
{
//alert('I am here');
	document.frmNewsLetter.submit();
}

/******************************************************
Logout
*******************************************************/
function Logout(strLoggedIn)
{

	var x=window.confirm("Are you sure you want to Logout?");
	
	if (x)
		document.location.href = '../Admin/Logoff.asp'
	else
		retrun
}

