// JavaScript Document

//------- Function to change textbox helptext values -----------//
function chk_txtbox_h(txtbx, txtval)
{
	if (document.getElementById(txtbx).value == txtval)
	{
		document.getElementById(txtbx).value = '';
		document.getElementById(txtbx).style.color = '#000000';
		document.getElementById(txtbx).style.fontStyle = 'Normal';
	}
	return;
}

function chk_txtbox_b(txtbx, txtval)
{
	if (document.getElementById(txtbx).value == '')
	{
		document.getElementById(txtbx).style.color = '#999999';
		document.getElementById(txtbx).style.fontStyle = 'Italic';
		document.getElementById(txtbx).value = txtval;
	}
	return;
}

