//pop-up
function openWin(url, windowname, w, h) {
  newWin=window.open(url, windowname, "scrollbars=yes, resizable=no,width=" + w + ",height=" + h);
  newWin.focus();
}

function openWinNoScroll(url, windowname, w, h) {
  newWin=window.open(url, windowname, "scrollbars=no, resizable=no,width=" + w + ",height=" + h);
  newWin.focus();
}