function checkfields() {
	var tmp = 0;
	var tempstr;
	tempstr="Παρακαλούμε να επιλέξετε ένα από τα ακόλουθα πεδία:\n"
	tempstr = tempstr + "___________________________________________________\n\n";
	
	if ((document.adsl_search.speed.options[document.adsl_search.speed.selectedIndex].value == "0")&&(document.adsl_search.company.options[document.adsl_search.company.selectedIndex].value == "top")){
		tempstr = tempstr + "Ταχύτητα ADSL ή Παροχέα Υπηρεσιών ADSL\n"
		tmp = 1;
	}
	
	if (tmp==1){
		tempstr = tempstr + "___________________________________________________";
		alert (tempstr);
              return false;
	}
	
	else {
	document.adsl_search.submit();
       return true;
	}
}
