$().ready(function(){
	$('#contentCommentForm').submit(validate_gamecomment);
	
	$('#AddCommentLink').click(function(e){
//		playModal.openModal(e, 'AddComment', 'השארת תגובה', {});
		$('#AddComment').slideToggle();
	})
})

function validate_gamecomment() {
	var form = this, permit = parseInt(form.permit.value), userid = parseInt(form.userid.value), comment = form.comment.value;
		
	if (permit == 0) {
		alert('לא ניתן לשלוח תגובות');
		return false;
	}
	else if (permit == 1 && userid <= 0) {
		alert('עליך להכנס למערכת או להרשם על מנת לשלוח תגובה');
		$('#loginForm').get(0).login.focus();
		return false;
	}
	else if ((permit == 1 && userid > 0) || permit == 2) {
		if (comment == '') {
			alert('עליך למלא תגובה כלשהי');
			return false;
		}
		else
			return true;
	}
	
	return false;
}
