if (window.navigator.userAgent.indexOf("MSIE")>=1)
{
//如果浏览器为IE
if (document.readyState=="complete"){
move('up');
}else{
document.onreadystatechange=function(){
if(document.readyState=="complete")move('up');
}
}
}else if(window.navigator.userAgent.indexOf("Firefox")>=1)
{
//如果浏览器为Firefox
move('up');
}