
function clearDefaultandCSS(el) {
	if (el.value=="yourname@domainname.com") el.value = ""
		// If Dynamic Style is supported, clear the style
	if (el.style) el.style.cssText = ""
}
function clearDefaultandCSS1(el) {
	if (el.value=="") el.value = "yourname@domainname.com"
	// If Dynamic Style is supported, clear the style
	if (el.style) el.style.cssText = ""
}