// JavaScript Document

function newWinChk(url, winRef, props) {
if (!window.winThree || winThree.closed) {
winThree = this.open(url, winRef, props);
winThree.focus();
}
else {
winThree.close();
winThree = this.open(url, winRef, props);
}}

function newWin(url, winRef, props) {
winOne = this.open(url, winRef, props);
winOne.focus();
}