<!--detectframeset-->
if (top.frames.length == 0) { top.location = "http://www.petergreenawayevents.com/petergreenaway.html"; }
<!--/detectframeset-->

<!--hideandshow-->
function hide(id) {
	if (document.getElementById) {
		// Standards Compliant code  
		document.getElementById(id).style.visibility = "hidden";  
	} else {
		// Special cases code
		if (ns4) { document.layers[id].visibility = "hide"; }
		if (ie4) { document.all[id].style.visibility = "hidden"; }
	}
}

function show(id) {
	if (document.getElementById) {
		// Standards Compliant code  
		document.getElementById(id).style.visibility = "visible";   
	} else {
		// Special cases code
		if (ns4) { document.layers[id].visibility = "show"; }
		if (ie4) { document.all[id].style.visibility = "visible"; }
	}
}

function toggle(id) {
	if (document.getElementById) {  
		// Standards Compliant code  
		if (document.getElementById(id).style.visibility == "hidden") { show(id); } else { hide(id); } 
	} else {
		// Special cases code
		if (ns4) { if ( document.layers[id].visibility == "hide" ) { show(id);	} else { hide(id); } }
		if (ie4) { if ( document.all[id].style.visibility == "hidden" ) { show(id); } else { hide(id); } }
	}
}
<!--/hideandshow-->	
