﻿// JScript File
function openclose(no)
{
  var divid="cs"+no;
  var spandid="sp"+no;
  var imgid="img"+no;
  var con=document.getElementById(spandid).firstChild.nodeValue;
    if (con=='More')
    {
        document.getElementById(divid).className="tagvisb";
        document.getElementById(spandid).firstChild.nodeValue="Close";
        document.getElementById(imgid).src="images/up.jpg";
    }
    else
    {
        document.getElementById(divid).className="taghide";
        document.getElementById(spandid).firstChild.nodeValue="More";
        document.getElementById(imgid).src="images/down.jpg";
    }   
}
function caseclose(no)
{
    var divid="cs"+no;
    var spandid="sp"+no;
    var imgid="img"+no;
    document.getElementById(divid).className="taghide";
    document.getElementById(spandid).firstChild.nodeValue="More";
    document.getElementById(imgid).src="images/down.jpg";
}