// JavaScript Document

function subrayar(obj)
{
	obj.style.textDecoration = "underline";
}

function dessubrayar(obj)
{
	obj.style.textDecoration = "";
}

