/************************************************************
Your Style Javascript for JUST SHOP
Author: Ben Smithett
Created: 16/3/09
************************************************************/

// Form validation
function checkForm(thisform) {
	// place any other field validations that you require here
	// validate answer radio buttons
	myOption = -1;
	for (i=thisform.answer.length-1; i > -1; i--) {
		if (thisform.answer[i].checked) {
			myOption = i; i = -1;
		}
	}
	if (myOption == -1) {
		alert("You must rate the outfit first!");
		return false;
	}
	
}



