function validateSmallLogin(){
	var tmp = 0;
	var tempstr;
	tempstr="Παρακαλούμε συμπληρώστε τα ακόλουθα πεδία:\n"
	tempstr = tempstr + "___________________________________________________\n\n";	

	if ((document.logsmallform.user_name.value=="")||(document.logsmallform.user_name.value=="username")) {
  			tempstr = tempstr + "Συμπληρώστε το Username σας\n"
		tmp = 1;			
	}
	if (document.logsmallform.user_pwd.value==""){
		tempstr = tempstr + "Συμπληρώστε το Password σας\n"
		tmp = 1;
	}
	if (tmp==1){
		tempstr = tempstr + "___________________________________________________";
		alert (tempstr);
	}
	else{
		document.logsmallform.submit();
	}
}

