
function ValidateEnquiry(){
    if(document.enquiryForm.email.value == "" ){
        alert ( "Please enter your email!" );
        return false;
    }
}

function LoginError(){
    if(document.login.username.value == "" ){
        alert ( "Please enter your username!" );
        return false;
    }
    if(document.login.password.value == "" ){
        alert ( "Please enter your password!" );
        return false;
    }
}


function mouseOver(id) {
	document.getElementById(id).src ="template/images/elenimavrou_fiveyears_" + id + "_hover.jpg";
}

function mouseOut(id) {
	document.getElementById(id).src ="template/images/elenimavrou_fiveyears_" + id + ".jpg";
}


/*  ASK ELENI MAVROU  */

//----> Name
function clickedInsideAskName() { // (onfocus event)
	var theNameBox = document.getElementById("fullname");
	if (theNameBox.value == "Όνομα")
		theNameBox.value = "";
	
}

function clickedOutsideAskName() { // (onblur event)
	var theNameBox = document.getElementById("fullname");
	if (theNameBox.value == "")
		theNameBox.value = "Όνομα";
}


//----> E-mail
function clickedInsideAskEmail() { // (onfocus event)
	var theEmailBox = document.getElementById("email");
	if (theEmailBox.value == "Ηλ. Ταχυδρομείο")
		theEmailBox.value = "";
}

function clickedOutsideAskEmail() { // (onblur event)
	var theEmailBox = document.getElementById("email");
	if (theEmailBox.value == "")
		theEmailBox.value = "Ηλ. Ταχυδρομείο";
}


//----> Question
function clickedInsideAskQuestion() { // (onfocus event)
	var theQuestionBox = document.getElementById("question");
	if (theQuestionBox.value == "Ερώτηση")
		theQuestionBox.value = "";
}

function clickedOutsideAskQuestion() { // (onblur event)
	var theQuestionBox = document.getElementById("question");
	if (theQuestionBox.value == "")
		theQuestionBox.value = "Ερώτηση";
}




















