﻿// JavaScript Document

function clickclear(thisfield, defaulttext) {
	var searchelem = document.getElementById('frmsearch');
	searchelem.style.paddingTop ='3px'
	searchelem.style.height = '17px'
	searchelem.style.fontSize = '12px'
	searchelem.style.letterSpacing = '0em'
	searchelem.style.color = '#000'
	if (thisfield.value == defaulttext) {
		thisfield.value = "";
		
	}
}

function clickrecall(thisfield, defaulttext) {
	
	if (thisfield.value == "") {
		var searchelem = document.getElementById('frmsearch');
		searchelem.style.paddingTop ='0'
	searchelem.style.height = '20px'
	searchelem.style.fontSize = '15px'
	searchelem.style.letterSpacing = '0.1em'
	searchelem.style.color = '#ccc'
		thisfield.value = defaulttext;
	}
	else
	{
		var searchelem = document.getElementById('frmsearch');
	searchelem.style.paddingTop ='3px'
	searchelem.style.height = '17px'
	searchelem.style.fontSize = '12px'
	searchelem.style.letterSpacing = '0em'
	searchelem.style.color = '#000'
	}
}
