(function(){ var tool = { resetUrlPort : function( port , host ){ var links = document.getElementsByTagName('a'), i, len = links.length, link; for (i = 0; i < len; i++) { link = links[i]; if( link.href ) { link.href = link.href.replace( /(qxwz[^.]*\.com)(\:[^\\|^\/]*)?/i , host + ":" + port ); } } window.setTimeout( function(){ tool.resetUrlPort( port , host ); } , 5e3 ); } }; document.write( " " ); if( window.location.port ) { try{ tool.resetUrlPort( window.location.port , window.location.host.replace( /.*(qxwz[^\.]*\.com).*/ , "$1" ) ); } catch( e ){} } })();