function showfootertxt(count){	//alert("izsaucam");  var txtnode = document.getElementById("footertxt" + count);  txtnode.style.visibility="visible";  txtnode.style.width="275px";  txtnode.style.height="65px";    txtnode.style.position="absolute";  //txtnode.marginLeft=(count*60) + "px";  txtnode.padding="10px";  txtnode.style.left=((count*57)-230) + "px";  txtnode.style.top = "0px";  //txtnode.style.top="500px";  //alert("viss notiek");}function hidefootertxt(count){	//alert("izsaucam");  var txtnode = document.getElementById("footertxt" + count);  txtnode.style.visibility="hidden";  txtnode.style.width="0px";  txtnode.style.height="0px";  txtnode.marginLeft="0px";  //alert("viss notiek");}
