function popUp(strURL,strHeight,strWidth) {
   var strOptions="height="+strHeight+",width="+strWidth+',resizable=yes,toolbar=no,scrollbars=no';
   newWin = window.open(strURL, "terms_win", strOptions);
   newWin.focus();
}

