function addBasket(kod, count, b) {
  window.open('/basket/add.php?add='+kod+'&count='+count+'&'+b+'=T', 'addBasket', 'height=200,width=300,top='+((screen.height/2-100))+',left='+((screen.width/2)-150)+',status=no,statusbar=no,toolbar=no,menubar=no,location=no,scrollbars=no');
}

function showSelectWindow(kod, groups, name, opener, select_value) {
  window.open('select.php?kod='+kod+'&groups='+groups+'&name='+name+'&opener='+opener+'&select_value='+select_value, 'selectWindow', 'height=400,width=500,top='+((screen.height/2-200))+',left='+((screen.width/2)-250)+',status=no,statusbar=no,toolbar=no,menubar=no,location=no,scrollbars=yes');

}
function printVersion()
{
    elem = document.getElementById("print");
    content = elem.innerHTML;
    printWindow = open("","Товар");
    printWindow.document.write("<html><head><title>Печать страницы о товаре</title></head><body><table width='100%' border='0'>");
    printWindow.document.write(content);
    printWindow.document.write("</table></body></html>");
    printWindow.document.close();
    mybutton = printWindow.document.getElementById("printButton");
    mybutton.src = "/pic/good_print.gif";
    mybutton.style.display = "none";
    //mybutton.removeAttribute("onClick");
    //mybutton.setAttribute("onClick","'window.print()'");
}