<!--

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.v = parseInt(navigator.appVersion)
	this.nsold = (this.b=="ns" && this.v<5)
//	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.ns7 = (this.b=="ns" && this.v>=7)
//	this.ie = (this.b=="ie" && this.v>=4)
//	this.ie4 = (navigator.userAgent.indexOf('MSIE 4')>0)
//	this.ie5 = (navigator.userAgent.indexOf('MSIE 5')>0)
//	if (this.ie5) this.v = 5
//	this.min = (this.ns||this.ie)
}

// automatically create the "is" object
is = new BrowserCheck()

// Nota: internamente el NS7 es la versión 5
function Aviso() {
	if (is.nsold) alert("Este sitio web está optimizado para los navegadores Internet Explorer 4 y superiores y para Netscape 7 y superiores. Puede obtener versiones gratuitas de ambos programas en www.microsoft.es y www.netscape.es respectivamente.")
}
	
onLoad=Aviso()

//-->