
function link1Down(f){
	f.style.borderStyle="inset";
}

function link1Up(s){
	s.style.borderStyle="outset";
}

function limitChar(what,limit){
if (what.value.length>=limit){
return false}
else {return true}
}	

function changeBorder1(a){
	a.style.border="3px inset #ffff77";
	a.style.backgroundColor="#cccc55";
	}

function unChangeBorder1(b){
	b.style.border="2px inset #ffffff";
	b.style.backgroundColor="#87E087";
		}	
		
function validate() {
var ph=document.getElementById("phone").value;
var Fn=document.getElementById("FirstName").value;
var Ln=document.getElementById("LastName").value;
var submitOK="true";

if (ph<1 || Fn<1 || Ln<1) {
	alert("Τα πεδία με το (*) είναι υποχρεωτικά!");
	submitOK="false";
	}

if (submitOK=="false")
 {return false;}
 else{return true}
}		
