
function showborder(w) {
	try {
		document.getElementById(w).style.border = '1px #000000 solid';
	} catch(error) { 
		//break;
	} 
}//SLUT function...

function hideborder(w) {
	try {
		document.getElementById(w).style.border = '1px #CCCCCC solid';
	} catch(error) { 
		//break;
	} 
}//SLUT function...
