function open_basket(lnk,width,height) //opens new window
{
   var wnd_class = "width="+width+",height="+height+",location=no,menubar=no,scrollbars=yes,resizable=yes";
   win = window.open(lnk,'win',wnd_class);
   win.focus();
}
