
function check_casestudy(myForm) 
{	
	if(!check_select(myForm.cat_ID,'Please select a category.'))
		return false;
		
	if(!check_value(myForm.title,'Please enter the case study title.'))
		return false;
		
	if(!check_value(myForm.casestudy,'Please enter the text of your case study.'))
		return false;

}