/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: thamba | http://www.thamba.com/
Adapted by Lee Underwood */

function showbox(box){
	if(document.getElementById(box).style.display=='block'){
		document.getElementById(box).style.display='none';
	}else{
		document.getElementById(box).style.display='block';
	}
}

