function activateInput( pObj, pText )
{
	if (pObj.value == pText )
	{
		pObj.value = '';
	}
	pObj.style.backgroundColor = 'cornsilk';
	pObj.style.color = 'black';
}

function deactivateInput( pObj, pText )
{
	if (pObj.value == '' )
	{
		pObj.value = pText;
	}
	pObj.style.backgroundColor = '#e9e9e9';
	pObj.style.color = '#ccc';
}