function popitup(url,name,height,width) {

  newwindow=window.open(url,name,'height='+height+',width='+width+',left=100,top=200,resizable=yes,scrollbars=yes');

  if (window.focus) {newwindow.focus()}

  return false;

}

