/* ------------------------------------------------------------------------------------
 * Filename:					library.js
 * Description:					Custom generic javascript functions
 * Author:					Permeance Technologies Pty Ltd
 * Developer:					BD
------------------------------------------------------------------------------------ */

function clearInput(element)
{
	if (element.value == element.defaultValue)
	{
		element.value = "";
	}
}

function mimicClick(elementId) {
	document.getElementById(elementId).click();
}
