﻿// JScript File

function ShowcommentGC(id)
{ 
    if(id==1)
    {
       eval("document.getElementById('_ctl0_RowVisible').style.display=''");
       eval("document.getElementById('_ctl0_RowVisibleGrid').style.display='none'");
        document.getElementById('imgList').src="/images/list-on.gif";
        document.getElementById('imgGrid').src="/images/grid.gif";
    }
    else 
    {
       eval("document.getElementById('_ctl0_RowVisible').style.display='none'");
       eval("document.getElementById('_ctl0_RowVisibleGrid').style.display=''");
        document.getElementById('imgGrid').src="/images/grid-on.gif";
        document.getElementById('imgList').src="/images/list.gif";  
    }	
    return false; 
}	