var z = 2;
function h(str)
{
	obj = document.getElementById(str);
	if (obj.style) {
		z++;
		obj.style.zIndex = z;
		obj.style.border="gold dotted 1px";
	}
		
}
function unh(str)
{
	obj = document.getElementById(str);
	if (obj.style)
		obj.style.border="transparent solid 1px";
}
		
