﻿// JScript File
// JScript File



function applyDefaultValue(elem, val) 


{
		if(elem == null)
		{
			return;
		}

					elem.style.color = '#4b5e75';
					elem.value = val;
						elem.onfocus = function() {
						if(this.value == val) {
						this.style.color = '#00589c';
						this.value = '';
						}
						}
					elem.onblur = function() {
					if(this.value == '') {
					this.style.color = '#ff0000';
					this.value = val;
					}
					}
}



window.onload = function() {
  applyDefaultValue(document.getElementById('TxtUserNameT'), 'Username');
  applyDefaultValue(document.getElementById('TxtPasswordT'), 'Password');
  applyDefaultValue(document.getElementById('Sitesearch'), 'Site Search');
  applyDefaultValue(document.getElementById('Txtmail'),'Enter Your Email Id');
  applyDefaultValue(document.getElementById('quotesearch'), 'Quote Search');
  

}

