<!-- 
// Masking the e-mail address to prevent spam
function mailto(username) 
{ 
var domain = 'sanparks.org'; 
//var username = 'username'; 
document.location = 'mailto:' + username + '@' + domain; 
} 

//this one is to prevent right-click on an image - included here for convenience
function Image_Mousedown(IMG)
{
	if ( window.event.button == 2)
	{ alert ('Copyright 2005 - SANParks (South African National Parks)');

	 }
}
//--> 
