function checkPageLoad(rootURL, pageMode){
	var msg1 = 'Please bear in mind that this page is currently under development. \nIt is intended to demonstrate aspects af the site and as a result not all functions work correctly.';
	var msg2 = 'Sorry, but this page is currently still under development and cannot be used just yet. \nYou will now be redirected back to the Home page.';
	switch (pageMode) {
		case '0':
			break;
		case '1':
			alert(msg1);
			break;
		case '2':
			alert(msg2);
			window.location = rootURL;
			break;
		case '3':
			break;
		default:
			break;
	}	
}

function checkPageSubmit(rootURL, pageMode){
if(pageMode > 0){
	alert('This page is currently under development and the "Submit" button will not function correctly. \nYou will now be redirected back to the Home page.');
	window.location = rootURL;	
	}
}
