// Kevin Mitchell | Internet Strategies (UK) Ltd
// ShowMe Script

var LastAreaShown='shell'; // Sets which area is visible by default | Required

function show_me(area_id){
	// check if need to hide an area
	if (area_id==LastAreaShown){
		document.getElementById(area_id).style.display= "none";
		LastAreaShown='x';
	}else{
		if (LastAreaShown!='x'){
			document.getElementById(LastAreaShown).style.display= "none";
		}
		document.getElementById(area_id).style.display= "block";
		LastAreaShown=area_id;
	}
}