var strLogin = '<%=msgEmail%>';

function onLoginClick() {
	with (document.frmLogin) {
		if(!EmailAlert(iemail)) return false;
//		PopUpEx('<%=sLoginQS%>' + iemail.value ,'login');
	}
	return;
}

function inputTextOnBlur(obj,strText) {
	if (strText=='') strText=strLogin;
	with (obj) { if (value=='') value = strText };
}

function inputTextOnFocus(obj, strText) {
	if (strText=='') strText=strLogin;
	with (obj) { if (value==strText) value = '' };
}