//*******************************************************************
// AROC UK Browser Manager JavaScript Class Def. & Variable 
//	Declaration.
//			// (c) 2000/2001/2002/2003 Kappa Solutions Ltd.
//*******************************************************************
//
// Constructor. *****************************************************
function BrowserMgr() {
	// The Browser Manager opens pages in browser windows labeled 
	// "arocLinks" or "arocPopUps". The latter is menu-less etc. and
	// resembles a dialogue window.
}
// Link. ************************************************************
BrowserMgr.prototype.link = function (url) {
	if (!this._linkLabel) this._linkLabel = "arocLinks";
	
	top[this._linkLabel] = window.open(url, this._name);
	top[this._linkLabel].focus();
}

// Show. ************************************************************
BrowserMgr.prototype.show = function (url) {
	if (!this._showLabel) this._showLabel = "arocShows";
	
	top[this._showLabel] = window.open(url, this._name);
	top[this._showLabel].focus();
}

// Pop Up. **********************************************************
BrowserMgr.prototype.popUp = function (url) {
	
	if (!this._popUpLabel) {
		this._popUpLabel = "regandruby";
		this._popUpProps	= "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width=700,height=600,top=20%,left=20%";
	}
	top[this._popUpLabel] = window.open(url, this._popUpLabel, this._popUpProps);
	top[this._popUpLabel].focus();
}

// Go To. ***********************************************************
BrowserMgr.prototype.goto = function (page) {
	document.location = page;
}

// Redirect. ********************************************************
BrowserMgr.prototype.redirect = function (url) {
	document.location = url;
}

if (!bm) var bm = new BrowserMgr();

//*******************************************************************
