    // For popups from the menu (e.g. pinks)
    function popup(w,h,p,t,s){
         var left = (screen.availWidth/2) - (w/2);
         var top = (screen.availHeight/2) - (h/2);
         window.open(p,t,'width='+w+',height='+h+',scrollbars='+s+',status=0, left='+left+', top='+top)
    }