function addunderline(id)
{
	try {
	if (document.all||document.getElementById) {
		if (document.getElementById) {
			document.getElementById("priceunderline_"+id).style.textDecoration = 'underline';
		}
   }
   } catch (x) {
   }
}

function removeunderline(id)
{
	try {
	if (document.all||document.getElementById) {
		if (document.getElementById) {
			document.getElementById("priceunderline_"+id).style.textDecoration = 'none';
		}
   }
   } catch (x) {
   }
}