﻿
/* checks whether the username and password fields were filled */
function checkLogin(currForm){
	if((currForm.password.value=='')||(currForm.username.value=='')){
		alertMsg(2, 'שם משתמש וסיסמה');
		return false;
	}
	else{
		return true;
	}
}

