/**********************************************************************************/
/***		Client-side JavaScript function library																	***/
/***		Copyright Apache Solutions Ltd 2006																			***/
/***		(unauthorised use of this code will result in prosecution by law)				***/
/**********************************************************************************/

// capture mouse clicks.
document.onmousedown=HandleMouseClick;
document.oncontextmenu = function() {return false;};

//
// Displays a pop up copyright message if the right mouse button is used:
//
function HandleMouseClick(e) {
	var message="All content is copyright 2006 Nicola Lincoln, all rights reserved.";
	if (document.all) {
		if (event.button==2 || event.button==3) {
			alert(message);
			return false;
		}
	}
	else if (document.getElementById) {
		if (e.which == 3) {
			alert(message);
			return false;
		}
	}
}

//
// Closes the current window without prompting:
//
function CloseWindow() {
	window.open('','_parent','');
	window.opener = top;
	window.close();
}

//
//	Hides or shows the given element:
//
function Toggle(id) {
	if (document.getElementById) {
		var el = document.getElementById(id);
		el.style.visibility = (el.style.visibility == 'hidden' || el.style.visibility == '') ? 'visible' : 'hidden';
	} 
} 

//
// Script end.
//

