		function checkProgram(form) {
			var why = "";
			if(form.protitle.value == "") {
				why += "Please enter a Program Name\n";
			}
			if(form.proinfo.value == "") {
				why += "Please enter some information about the Program\n";
			}
			if(why == "") {
				return true;
			} else {
				alert(why);
				return false;
			}
		}
		function checkProg(form) {
			var why = "";
			if(form.progName.value == "") {
					why += "Please enter a Program Name\n";
			}
			if(form.progDetails.value == "") {
				why += "Please enter some information about the Program\n";
			}
			if(why == "") {
				return true;
			} else {
				alert(why);
				return false;
			}
		}
		function checkDetails(form) {
			var why = "";
			if(form.orgName.value == "") {
				why += "The oganisation must have a Name\n";
			}
			if(form.orgPhone.value == "") {
				why += "Please enter a contact Phone Number\n";
			}
			if(form.orgInformation.value == "") {
				why += "Please enter some information about your Organisation\n";
			}
			if(form.orgContact.value == "") {
				why += "Please enter a Contact Person\n";
			}
			if(why == "") {
				return true;
			} else {
				alert(why);
				return false;
			}
		}
		function checkPws(form) {
			if(form.pw1.value == "") {
				alert("Password cannot be blank");
				return false;
			}
			return true;
		}
		function checkEvent(form) {
			var why = "";
			if(form.eventName.value == "") {
				why += "Event must have a Name\n";
			}
			if(form.eventDetails.value == "") {
				why += "Please enter some information about the event\n";
			}
			if(form.eventLocation.value == "") {
				why += "Event needs a location\n";
			}
			if(why == "") {
				return true;
			} else {
				alert(why);
				return false;
			}
		}
		function checkReason(form) {
			if(form.canreason.value == "") {
				alert("Please enter a reason for cancelling this event");
				return false;
			}
		return true;
		}
		function checkNews(form) {
			var why = "";
			if(form.newsTitle.value == "") {
				why += "News story needs a title\n";
			}
			if(form.newsContent.value == "") {
				why += "Please enter some content for your News\n";
			}
			if(why == "") {
				return true;
			} else {
				alert(why);
				return false;
			}
		}

		function clearclick(box,value) {
			if(box.value == value) {
				box.value = "";
			}
		}
		function youSure(item) {
			return confirm("Are you sure you wish to delete this " + item + "?");
		}

		function unScramble(eMail1,eMail2,subjectText){
		
			var a,b,c,d,e;
			a=eMail1;
			b=eMail2.substring(0,eMail2.length-5);
			b=eMail2;
		
			if(subjectText!=""){d="?subject="+escape(subjectText);}else{d="";}		
			document.write("<A HREF=\"mai"+"lto:"+a+"@"+b+d+"\""+e+">");
		
		}