// name this window
self.name = "main";
	
function Popup(pLabel, pPage, scrollOpt, wWidth, wHeight) {
	this.name = pLabel;
	this.page = pPage;
	this.scroll = scrollOpt;
	this.width = wWidth;
	this.height = wHeight;
	// the open method
	this.open = function(){
		var myWin = window.open(this.page,this.name,'width=' + this.width + ',height=' + this.height + ',scrollbars=' + this.scroll + ',left=90,top=50');
		myWin.focus();
	};
}
function openWindowNoMenu(pLabel, pPage, scrollOpt, wWidth, wHeight) {
	var myWin = window.open(pPage,pLabel,'width=' + wWidth + ',height=' + wHeight + ', menu=no, resizable=no, scrollbars=' + scrollOpt);
	myWin.focus();
}

