$(document).ready(function(){

		// new topic no-value check
			$('form#f_NewTopic').submit( function(){
				// if it has something in it, submit it
				if(document.f_NewTopic.Title.value==''){
					alert('You must write something in the title area.');
						return false;
				}
				
				if(document.f_NewTopic.Post.value==''){
					alert('You must write something in the message area.');
						return false;
				}
			});
			
		// reply no-value check
			$('form#f_TopicReply').submit( function(){
				// if it has something in it, submit it
				if(document.f_TopicReply.Post.value==''){
					alert('You must write something in the reply area.');
						return false;
				}
			});


});
