// RPM Solutions UK Ltd.
// www.rpm-solutions.co.uk
//
// This functions file requires prototype to be loaded first.

function checktext(what,e){
	if (what.getAttribute('defaulttext') == what.value && e.type == 'click'){
		what.value= '';
	}else{
		if (what.value == '' && e.type != 'click'){
			what.value = what.getAttribute('defaulttext');	
		}
	}
}
