Wed. July 15, 3:46:24 PM
if(ie6 == false){
a();
}else{
b();
}
AAAAA!!!
if(ie6){
b();
}else{
a();
}
There, I feel all better now.
Anyways... That's a neat concept to get browser version detection (for IE, anyways) w/o resorting to the fugly JS navigator variables and unreliable string parsing (plus the fact that these variables can/often are spoofed).