function match(password,otherpassword)
{
if (password == otherpassword) {

	document.getElementById("match").innerHTML = "<img src=\"Images2/same.gif\"> Passwords Match";
}
else{
	document.getElementById("match").innerHTML = "<img src=\"Images2/notsame.gif\"> Passwords Do Not Match";
}
}
