function gotoURL(URLString) {
	document.location=URLString;
}

function open_newsPopup() {
  var hwnd = window.open('','newsPopup','width=250,height=350');
  hwnd.focus();
}

function open_editPopup(setStr) {
  var hwnd = window.open('','editPopup',setStr);
  hwnd.focus();
}


function open_prevnewsPopup(URLString) {
  var hwnd = window.open(URLString,'newsPopup','width=600,height=450,scrollbars=yes,resizable=yes');
  hwnd.focus();
}

