function BrowserCheck() {
	var b = navigator.appName
	if (b=="Netscape") this.b = "ns"
	else if (b=="Microsoft Internet Explorer") this.b = "ie"
	else this.b = b
	this.version = navigator.appVersion
	this.v = parseInt(this.version)
	this.ns = (this.b=="ns" && this.v>=4)
	this.ns4 = (this.b=="ns" && this.v==4)
	this.ns5 = (this.b=="ns" && this.v==5)
	this.ns6 = (this.b=="ns" && this.v==6)
	this.ie = (this.b=="ie" && this.v>=4)
	this.ie4 = (this.version.indexOf('MSIE 4')>0)
	this.ie5 = (this.version.indexOf('MSIE 5')>0)
	this.min = (this.ns||this.ie)
}

function openIT(titulo,url,ancho,alto) {
	theURL=url
	wname ="kitcity"
	W=ancho;
	H=alto;
	windowCERRARa 		= "img/close_a.gif"
	windowCERRARd           = "img/close_d.gif"
	windowCERRARo 		= "img/close_o.gif"
	windowNONEgrf 		= "img/none.gif"
	windowCLOCK		= "img/clock.gif"
	windowBAR 		= "img/bar.gif"
	windowREALtit		= "Line of Time Future"
	windowTIT 	    	= titulo
	windowBORDERCOLOR   	= "#000000"
	windowBORDERCOLORsel	= "#FF0000"
	windowTITBGCOLOR    	= "#6a6bd9"
	windowTITBGCOLORsel 	= "#CCCCCC"
	openchromeless(theURL, wname, W, H, windowCERRARa,windowCERRARd,windowCERRARo, windowNONEgrf, windowCLOCK, windowTIT, windowREALtit , windowBORDERCOLOR, windowBORDERCOLORsel, windowTITBGCOLOR, windowTITBGCOLORsel)
}
