/* ########################
   BCL generic script file.
   R. Sydora   www.rsyd.com
        build:20050126
   ######################## */

// No spam function.                          www.rsyd.com
// Useage: Adress, Domain, Domain Suffix, Optional Subject.
function noSpamMail( p_name,p_domain,p_sufix,p_subject ) {
	if (p_subject != null) {
		location.href("mailto:" + p_name + "@" + p_domain + "." + p_sufix + "?subject=" + p_subject);
	} else {
		location.href("mailto:" + p_name + "@" + p_domain + "." + p_sufix);
	}
}

// Place last updated month and year.
function getLastUpdate() {
	lastUpdate = new Date(document.lastModified);
	monthUp =  lastUpdate.getMonth() + 1;
	yearUp = lastUpdate.getYear();
	document.write(monthUp + "/" + yearUp);
}

// Status bar welcome.
window.status = "Welcome to the Belmead Community League website!";