// These functions are used in the navigation of the page

// changes the members password field from a text field to a password field
function changeField(){
	document.getElementById("passwordbox").innerHTML = "<input type= 'password' name= 'Password' id = 'password' class = 'login_text'><br/>";
	document.getElementById("password").focus();
	document.getElementById("password").focus();
}
		
//sets the corrdinates of the corner image to make rounded top right side
function setCornerImgPosition(){		
	var xCoord = document.getElementById("banner").offsetLeft;
	var yCoord = document.getElementById("banner").offsetTop;
	xCoord += 92;
	yCoord += 192;
	var xString = xCoord.toString() + "px";
	var yString = yCoord.toString() + "px";
	document.getElementById("corner").style.left = xString;
	document.getElementById("corner").style.top = yString;
}
