//Print Your Model Function
    function PrintElem()
    {
        var mywindow = window.open('', 'selectedValue', 'height=415,width=415');
		var data = jQuery('#selectedValue').html();
        mywindow.document.write('<html><head><title>Print Your Model Details</title>');
        /*optional stylesheet*/ mywindow.document.write('<link rel="stylesheet" href="/portals/3/portal.css" type="text/css" />');
		mywindow.document.write ('<style type="text/css">#selectedValue {display:block !important;} .distributorBtn{display:none;} #PrintThis{display:none;}</style>');
        mywindow.document.write('</head><body >');
		mywindow.document.write('<div id="print-model"><div style="text-align:center; margin-bottom:5px;"><img src="/Portals/3/zorrod-logo.jpg" alt="Zorrods Logo" height="94" width="270" /></div>')
        mywindow.document.write(data);
        mywindow.document.write('</div></body></html>');
        mywindow.document.close();
        mywindow.print();
        return true;
    }

