/* ======= SHOW/HIDE VALUE IN INPUT ======= */
function inpFocus(id, text)
{
	var inpObj = document.getElementById(id);
	
	if ( inpObj.value == text )
	{
		inpObj.value = '';
	}
	else
	{
		if ( inpObj.value == '' )
		{
			inpObj.value = text;
		}
	}
}
