function popUp(url, windowname, width, height, scroll) {
  var editor = window.open(url, windowname, 'width='+width+',height='+height+',scrollbars='+scroll);
	if (window.focus) {editor.focus()}
}

function goURL(url) {
	window.location.href = url;
}

