var browsName = navigator.appName.split( " " )
var browsVersion = parseInt(navigator.appVersion.charAt(0))
var framesOK = "/frames.html"

if ( navigator.appName.indexOf( "AOL" )  == 0 ) {
	window.location = framesOK
} else if ( navigator.appName.indexOf( "aol" )  == 0 ) {
	window.location = framesOK
} else if ( navigator.appName.indexOf( "Netscape" ) == 0 ) {
	window.location = framesOK
} else if ( navigator.appName.indexOf( "Microsoft" )   == 0 ) {
	window.location = framesOK
}
