
function pwdcontrol(strAction)
{
	if (strAction == "in")
	{
		window.document.forms[0].pwd.value = "";
	}
	if (strAction == "out")
	{
		if (window.document.forms[0].pwd.value == "")
		{
			window.document.forms[0].pwd.value = "Senha";
		}	
	}
}

function usercontrol(strAction)
{
	if (strAction == "in")
	{
		window.document.forms[0].username.value = "";
	}
	if (strAction == "out")
	{
		if (window.document.forms[0].username.value == "")
		{
			window.document.forms[0].username.value = "Usuário";
		}	
	}
}

function emailcontrol(strAction)
{
	if (strAction == "in")
	{
		window.document.forms[1].email.value = "";
	}
	if (strAction == "out")
	{
		if (window.document.forms[1].email.value == "")
		{
			window.document.forms[1].email.value = "Digite seu e-mail";
		}	
	}
}




