function removeInputLabel(wl)
{
	$(wl+'Label').addClassName('removed');
}
function addInputLabel(wl)
{
	$(wl+'Label').removeClassName('removed');
}
function checkInputLabel(wl)
{
	if($F(wl).empty())
	{
		addInputLabel(wl);
	}
	else
	{
		removeInputLabel(wl);
	}
}
function rcPageInit()
{
	checkInputLabel('username');
	checkInputLabel('password');
	checkInputLabel('productCode');
}
document.observe('dom:loaded',rcPageInit);
