/*
##############################################################
##                                                          ##
## Copyright � ROI Marketing Services. All Rights Reserved. ##
##                                                          ##
## Programmer: Kari Leppanen                                ##
##                                                          ##
## File name: match.js                                      ##
##                                                          ##
##############################################################

*/

function match(password,otherpassword) {
if (password == otherpassword) {
	  document.getElementById("match").innerHTML = "<strong><font color='green'>Passwords Match</font></strong>";
  } else {
	document.getElementById("match").innerHTML = "<strong>Passwords Do Not Match</strong>";
  }
}

