function HideKeteranganidle(txtobj)
{
	var isi = window.document.getElementById(txtobj).value;
		
		if ((isi == "ZISBID") ||
		(isi == "Password"))
	{
	
		window.document.getElementById(txtobj).value = "";
		
	}
	
}


function ShowKeteranganidle(txtobj)
{

	var isi = window.document.getElementById(txtobj).value;
		
	if (isi == "")
	{
		if (txtobj == "WLC_txtUserLogon")
		{
			window.document.getElementById(txtobj).value = "ZISBID";
			
		}
		
		if (txtobj == "WLC_txtPassword")
		{
			window.document.getElementById(txtobj).value = "Password";
			
		}
		
			}
}
