﻿// Textbox Clear & Reset
// ----------------------------------------------
// These functions allow you to clear a textbox's content on click into
//  and reset the box value back if the box is empty

function clearBox(box, text) {
	if(box.value == text)
		box.value = "";
}

function resetBox(box, text) {
	if(box.value == "")
		box.value = text;
}
