function doLogin(strID,strValue,strEventType)
{
	switch(strEventType)
	{
		case "Click":
		  document.getElementById(strID).value = strValue;
		  break;
		case "Blur":
		   document.getElementById(strID).value = strValue;
		   break;
	 }
}
