


function clearUsername(el) {
	if (el.value == "email/username")
		el.value = "";
}
function clearPassword(el) {
	if (el.value == "password")
		el.value = "";
}
function clearInput(el) {
	el.value = "";
}





function makePassword(el) {
	if(navigator.appName.match("Explorer"))
	{
		$passDiv = document.getElementById("passContain");
		$passDiv.innerHTML = '<input type="password" id="login_password" name="login_password" class="formTxt" value="password" maxlength="255" onfocus="clearPassword(this);" />';
		window.setTimeout("document.getElementById('login_password').focus()",1);
	}
	else
	{
		el.type = "password";
	}

}
