// JavaScript Document

function clearTxt(obj)
{
	obj.value="";
}

//:MKR: Function to change img src on mousehover
function changeimg(obj)
{
	if(obj.name=='UT-IMG')
	{
		obj.src="/images/print_yellow.gif";
	}
	else
	{
		obj.src="/images/email_yellow.gif";
	}

}

//:MKR: Function to resume default settings on mouseout
function resumeimg(obj)
{
	if(obj.name=='UT-IMG')
	{
		obj.src="/images/print_grey.gif";
	}
	else
	{
		obj.src="/images/email_grey.gif";
	}
}

//:MKR: Function to make text underline on mousehover
function changeTxtDyn(obj)
{
document.getElementById(obj).style.textDecoration='underline';
}

//:MKR: Function to resume default settings on mouseout
function removeTxtDyn(obj)
{
document.getElementById(obj).style.textDecoration='none';
}


function changetxtcolor(obj)
{
	document.getElementById(obj).style.color='#85B1B1';
}

function resumechangetxtcolor(obj)
{
	document.getElementById(obj).style.color='#6DA9A9';	
}