var newwindow;
function pop_web_int_full(url)
{
	newwindow=window.open(url,'name','height=768,width=1024');
	if (window.focus) {newwindow.focus()}
}

function checkform() {
  var bad=false;
  if (document.loginform.username.value == "" ||
	 document.loginform.password.value == "") {
	alert("Please ensure that you have entered your username and password");
	bad=true;
	return false;
  }
  if (!bad) {
	document.loginform.submit();
  }
}

function pop_accounts(url)
{
	newwindow=window.open(url,'name','height=550,width=760');
	if (window.focus) {newwindow.focus()}
}