/*********************
popups came from here:
http://www.codestore.net/A55692/store.nsf/all/3700D21AD3C67AAA86256974004B4268?OpenDocument
********/
popupWins = new Array();

function windowOpener(url, name, args) {
/******************************* 
the popupWins array stores an object reference for
each seperate window that is called, based upon
the name attribute that is supplied as an argument
*******************************/
if ( typeof( popupWins[name] ) != "object" ){
	popupWins[name] = window.open(url,name,args);
} else {
	if (!popupWins[name].closed){
		popupWins[name].location.href = url;
	} else {
		popupWins[name] = window.open(url, name,args);
	}
}

popupWins[name].focus();
}


