//
// Opens a new window
//
function openWindow(url, name) {
  window.open(url, name,
	      "width=750,height=550,scrollbars=yes,resizable=yes,status=yes");
}

//
// Opens a new small window
//
function openSmallWindow(url, name) {
  window.open(url, name,
	      "width=450,height=470,scrollbars=yes,resizable=yes,status=yes");
}

