function popitup(url,width,height) {   newwindow=window.open(url,'s','height=' + height + ',width=' + width);   if (window.focus) {newwindow.focus()}   return false;}
