function show() {
	
	var elementForumCont = document.getElementById('forum-container');
	
	elementForumCont.style.display = 'block';
	
}

function hide() {

	var elementForumCont = document.getElementById('forum-container');
	
	elementForumCont.style.display = 'none';
	
}

function validate(theForm){

    if ( theForm.message.value == "" ) 
    {
		alert ( "Please fill in the 'Message' box." );
        return false;
    }
	else if ( theForm.subject.value == "" ) {
		alert ( "Please fill in the 'Subject' box." );
		return false;
	}	
	
    return true;
	
}