<!--

function openNewWindow(props) {
  if (props.location) {
  	w = window.open("",props.name,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + props.scrollbars + ",resizable=no,copyhistory=no,width=" + props.width + ",height=" + props.height);
    w.location = props.location;
	w.onLoad = new function() {
		w.focus();
	}
  }
}

function WindowProperties() {
	this.location = '';
	this.width = 300;
	this.height = 300;
	this.name = 'default';
	this.scrollbars = 'yes';
}

// -->