function popup(url, width, height) {
mywindow = window.open (url,
  "mywindow","location=1,status=1,scrollbars=1,width="+width+",height="+height);
  mywindow.moveTo(0,0);
}

function gotoURL(url) {
	window.location = url;
}
