var popupWin;
function openPopup(url, winname)
{
	popupWin = window.open(url, winname, 'location=0,status=0,scrollbars=1,width=300,height=500');
	return;
}

var defPassVal = "clave";

function switchPassType()
{
	if (getFormInputValue("login", "password") == "")
	{
		setFormInputType("login", "password", "text");
		setFormInputValue("login", "password", defPassVal);
	}
}

function setPassType()
{
	if (getFormInputValue("login", "password") == defPassVal && getFormInputType("login", "password") == "text")
	{
		setFormInputValue("login", "password", "");
		setFormInputType("login", "password", "password");
	}
}