function initializeMRM() {
	//init login boxes
	//note the variables declared in the top "clearedusername" and "clearedpassword"
	if (document.getElementById("username")) {
		document.getElementById("username").onfocus=function() {
			if (this.value=="username") this.value = "";
		}
	}
	if (document.getElementById("password")) {
		document.getElementById("password").onfocus=function() {
			if (this.value=="password") this.value = "";
		}
	}
	//end init login boxes
}
window.onload=function() {
	initializeMRM();
};

