function popup2(filename){
            window.open(filename, "","height=500,width=680,top=10,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,titlebar=no,toolbar=no,directories=no");
        }
        
jQuery(document).ready(function(){
    jQuery("#sales tr:odd").addClass("odd");
    jQuery("#sales tr:not(.odd)").hide();
    jQuery("#sales tr:first-child").show();

    jQuery("#sales tr.odd").click(function(){

        var tr = jQuery(this).next("tr");

        if(tr.css("display") == "none")
        tr.css("display", "");
        else
        tr.css("display", "none");

        if (jQuery(this).next("tr").hasClass("shown")) {

            jQuery(this).find(".readmore").html("Read More <br>(+)");
            jQuery(this).next("tr").removeClass("shown");


        } else {

            jQuery(this).find(".readmore").html("Read More<br> (-)");
            jQuery(this).next("tr").toggleClass("shown");


        }

    });
    
});     

 
