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

	document.getElementById("match").innerHTML = "<img src=\"images/same.gif\"> Password Sama";
}
else{
	document.getElementById("match").innerHTML = "<img src=\"images/notsame.gif\"> Password Tidak Sama";
}
}
