function popup(url,width,height) {
var features="location=no, menubar=no, status=no, scrollbars=1, resizable=no, toolbar=no";
 if (width) {
  features+=", width="+width;
 }
 if (height) {
  features+=", height="+height;
 }

window.open(url,'Details',features);
}