<script>
function test(){
alert("a");
}
window.onunload = function(){
if (navigator.userAgent.toLowerCase().match("chrome")) {
//test();
}
}
window.onbeforeunload = function(){
if (navigator.userAgent.toLowerCase().match("firefox")) {
// test();
}
}
</script>