// JavaScript Document
function focusval(id,str)
{
	id = id.toString();
	str = str.toString();
	if(document.getElementById(id).value == str)
	{
		document.getElementById(id).value = str;
		document.getElementById(id).value = "";
	}
}

function blurval(id,str)
{
	id = id.toString();
	str = str.toString();
	if(document.getElementById(id).value == "")
	{
		document.getElementById(id).value = document.getElementById(id).value;
	}
}
