function help() 
{
	var boxStyle = document.getElementById('boxHelp').style;
	var imgStyle = document.getElementById('help').style;
	
	if(boxStyle.visibility == 'visible'){
		boxStyle.visibility = 'hidden';
		imgStyle.border = 'none';
	} else {
		boxStyle.visibility = 'visible';
		imgStyle.border = 'solid 1px #ffffff';
	}
}