
function getID(id){
    return window.document.getElementById?window.document.getElementById(id):null;
}

function fn_show_more(tid){
	for(var i=1;i<=2;i++){ 
			getID("Details"+i).style.display = "none";	
	}
	getID(tid.replace("categories","Details")).style.display = "block";	
}