/* This script ascertains if the browser is IE4 or IE5 or NN4 or NN5*/



test=navigator.userAgent;
A='<link rel="stylesheet" type="text/css" href="';
B='.css">';
if (test.indexOf('IE 4')!=-1)document.write(A+'styleforie4'+B);
if (test.indexOf('IE 5')!=-1)document.write(A+'styleforie5'+B);
if (test.indexOf('Opera 5')!=-1)document.write(A+'styleforop5'+B);
if (test.indexOf('Gecko')!=-1)document.write(A+'styleforn6'+B);
else if (test.indexOf("compatible")==-1) {
if (test.indexOf('/4')!=-1)document.write(A+'stylefornn'+B);
if (test.indexOf('/5')!=-1)document.write(A+'stylefornn'+B);

}
