function openWin(url, windowname, w, h) {
  newWin=window.open(url, windowname, "scrollbars=yes,width=" + w + ",height=" + h);
  newWin.focus();
}
