
// ---------- script properties ----------


var results_location = "/results.ait";


// ---------- end of script properties ----------


function search_form(jse_Form,path) {
	if (jse_Form.vad.value.length > 0) {	    
		document.cookie = "d=" + escape(jse_Form.d.value);
		location = path+results_location;
	}
}

function clearSearch()
{
document.getElementById('vad').value="";

}

function showSearch()
{ 
 if(document.getElementById('vad').value==""){
  document.getElementById('vad').value="Search";
  }
}
