function reserve()
{
   var msg="THIS IS A RESERVED FUNCTION,WILL WORK LATER!";
   alert(msg);
}

function showDIV(DIV_ID)
{
   var obj;
   obj=document.getElementById(DIV_ID);
   if (obj.style.display=="none")
      obj.style.display="block";
   
}   

