[quote=ravenum008]can you give me a redirecting codes for some browser~!?

[/quote]
you can simply apply it to the code above ... example , if u dont like opera browsers, just add this :
[quote]if (window.opera){
alert('message');
document.location = "http://www.friendster.com/error.php";
}[/quote]
for ie ,
[quote]if (window.ie){
alert('message');
document.location = "http://www.friendster.com/error.php";
}[/quote]
for ff ,
[quote]if (window.gecko){
alert('message');
document.location = "http://www.friendster.com/error.php";
}[/quote]
u can remove the alert if ye like .. or add anything . hehe .
you get the point ? hehe ..
here are some values :
[quote]if(window.ie) {
//function here
}
if(window.ie6){
//function here
}
if(window.ie7){
//function here
}
if(window.gecko){
//function here
}
if(window.webkit419) {
//function here
}
if(window.webkit420) {
//function here
}
if(window.opera) {
//function here
}[/quote]
something like that . hehe.
or just refer to the code @ 1st post ..
it's kinda like a browser detector .. and it's easy to remember ..

@all : thanks!