



var glowin
function gloWindow(url)
{
		
	glowin = window.open(url,'pop', 'width=540,height=460,scrollbars=yes');
	glowin.focus();
	glowin.opener.name = "opener"	
}

var popwin
		


 
function Browseris () {

	var agt = navigator.userAgent.toLowerCase();
	this.major = parseInt(navigator.appVersion);
	
	 this.mac    = (agt.indexOf("mac")!=-1);
	
	 this.win98 = ((agt.indexOf("win98")!=-1)||(agt.indexOf("windows 98")!=-1));
   	 this.win95 = ((agt.indexOf("win95")!=-1)||(agt.indexOf("windows 95")!=-1));
    	 this.winnt = ((agt.indexOf("winnt")!=-1)||(agt.indexOf("windows nt")!=-1));

 	  this.win32 = this.win95 || this.winnt || this.win98 || 
                 ((this.major >= 4) && (navigator.platform == "Win32")) ||
                 (agt.indexOf("win32")!=-1) || (agt.indexOf("32bit")!=-1);
 
}


var browseris = new Browseris();
