function OpenWindow(WinURL) {
	var w;
	this.name="parentwindow";
	w = window.open(WinURL, "add", "width=500,height=250,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0");
	w.focus();
}
function OpenWindowWH(WinURL,w,h) {
	var w;
	this.name="parentwindow";
	w = window.open(WinURL, "add", "width="+w+",height="+h+",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0");
	w.focus();
}
function OpenWindowWHScroller(WinURL,w,h) {
	var w;
	this.name="parentwindow";
	w = window.open(WinURL, "add", "width="+w+",height="+h+",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0");
	w.focus();
}
function OpenWindowQS(site,querystring,width,height) {
  subwin = window.open(site+querystring, 'popup', 'width='+width+',height='+height+',left=5,top=5,resizable=yes,scrollbars=yes,status=yes,toolbar=no')
  subwin.focus();
}
function leapto(form) {
  var myindex=form.dest.selectedIndex;
  if (myindex>=1) {
    //window.location=form.dest.options[myindex].value;
	window.open(form.dest.options[myindex].value);
  }
}
