function checkFocus(chkid,id)
{
	document.getElementById(chkid).style.color="#5E3E3E";
	document.getElementById(id).style.border="solid 1px red";
} 
function checkBlur(chkid,id)
{
	document.getElementById(chkid).style.color="#999";
	document.getElementById(id).style.border="solid 1px #8CB7DC";
} 