﻿// JavaScript template using Windows Script Host

function clickedInsideSearch() { // this function is executed when search box gets focus (onfocus event)
	var theSearchBox = document.getElementById("search");
	if (theSearchBox.value == "Αναζήτηση")
		theSearchBox.value = "";
	
}

function clickedOutsideSearch() { // this function is executed when search box loses focus (onblur event)
	var theSearchBox = document.getElementById("search");
	if (theSearchBox.value == "")
		theSearchBox.value = "Αναζήτηση";
}