        function VoteWindow(w,h) {
                  size="height="+h+",width="+w+", status=no, toolbar=no, menubar=no, scrollbars=1'";
                  if (parseInt(navigator.appVersion)>3)
                    size+=",left="+(screen.width -w)/2+",top="+parseInt((screen.height -h)/2);
                  open('about:blank','pollwin',size);
        }

        function SmsWindow(url) {
                  w=800;
                  h=500;
                  size="height="+h+",width="+w+", status=no, toolbar=no, menubar=no, scrollbars=1'";
                  if (parseInt(navigator.appVersion)>3)
                    size+=",left="+(screen.width -w)/2+",top="+parseInt((screen.height -h)/2);
                  window.open(url,'smswin',size);
        }

        function Add2Basket(q,i) {
                  var w=200;
                  var h=100;
                  var URL;
                  size="height="+h+",width="+w+", status=no, toolbar=no, menubar=no, scrollbars=0'";
                  if(parseInt(navigator.appVersion)>3)
                      size+=",left="+(screen.width -w)/2+",top="+parseInt((screen.height -h)/2);
                  URL = '/basket.add/'+q+'/'+i+'/';
                  newWindow = window.open(URL, 'basketWindow', size);
                  location.reload();
        }
