// Java Document

if (navigator.appVersion.indexOf("MSIE 6")!=-1)
{
alert("KENNOL.com has been designed for Internet Explorer 8. It won't display correctly with your old version. Click \"OK\" to update Internet Explorer.");
top.location.href= "http://www.microsoft.com/windows/internet-explorer/worldwide-sites.aspx";
}
version=0
if (navigator.appVersion.indexOf("MSIE")!=-1){ temp=navigator.appVersion.split("MSIE")
version=parseFloat(temp[1])
if (version<=5.5){ 
alert("KENNOL.com has been designed for Internet Explorer 8. It won't display correctly with your old version. Click \"OK\" to update Internet Explorer.");
top.location.href= "http://www.microsoft.com/windows/internet-explorer/worldwide-sites.aspx";
}
}


if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)){ //test for Firefox/x.x or Firefox x.x (ignoring remaining digits);
 var ffversion=new Number(RegExp.$1) // capture x.x portion and store as a number
 if (ffversion<=3)
{
alert("KENNOL.com has been designed for Firefox 3.5. It won't display correctly with your old version Click. \"OK\" to update Firefox.");
top.location.href= "http://www.mozilla-europe.org/fr/firefox/";
}
 else if (ffversion<=2)
{
alert("KENNOL.com has been designed for Firefox 3.5. It won't display correctly with your old version Click. \"OK\" to update Firefox.");
top.location.href= "http://www.mozilla-europe.org/fr/firefox/";
}
 else if (ffversion<=1)
{
alert("KENNOL.com has been designed for Firefox 3.5. It won't display correctly with your old version Click. \"OK\" to update Firefox.");
top.location.href= "http://www.mozilla-europe.org/fr/firefox/";
}
}
