/*

*/
function setMenu(id) {
   for(var i=1; i<10; i++) {
      if(i != iSelMnu) {
         var oImg = document.getElementById("img" + i.toString());
         //var oImg = eval("img" + i.toString());
         oImg.src = (i != id) ? "img/null.gif" : "img/arrowR.gif";
      }
   }
}

function selectMenu(id) {
   var oImg = document.getElementById("img" + id.toString());
   if(oImg != null)
      oImg.src = "img/arrowRS.gif";
}

function setPic(id, sUrl) {
   document.getElementById("pic" + id.toString()).src = sUrl;
}

function setMPic(id, sUrl) {
   document.getElementById("mpic" + id.toString()).src = sUrl;
}

function setNPic(id, sUrl) {
   document.getElementById("npic" + id.toString()).src = sUrl;
}
