﻿    function show(C)
{

    if(document.getElementById(C).style.display != 'none')
        document.getElementById(C).style.display = 'none';
    else
        document.getElementById(C).style.display = 'inline';    
}
function Main()
{
    Show_Data();    
    Show_Data_Product();
}
