function hoverRow(obj)
{
	obj.style.background='#EEEED3';
}

function unHoverRow(obj)
{
	if (obj.className.toLowerCase().indexOf('odd') > -1)
	{
		obj.style.background='#DDDDDD';
	}else{
		obj.style.background='transparent';
	}
}

function hideRow(id)
{
	if ($(id))
	{
		$(id).hide();
	}
}

function showRow(id)
{
	if ($(id))
	{
		$(id).show();
	}
}

function toggleBillingAddressSame(state)
{
	if (state)
	{
		if ($('billingaddressdiv'))
		{
			$('billingaddressdiv').hide()
		}
	}else{
		if ($('billingaddressdiv'))
		{
			$('billingaddressdiv').show()
		}
	}
}