functionwindow.onload(){ var Request =newArray();//保存参数
var s =location.search.substring(1); if(s &&s!=""){ var list = s.split("&"); for(var i=0; i < list.length; i++){ var pair = list[i].split("="); if(pair[0]&& pair[0]!=""){ Request[unescape(pair[0])]=unescape(pair[1]); } } }
var fullscreen=Request["fullscreen"]; if(fullscreen!="yes"){ varfile=self.location; var a =window.open("about:blank","","fullscreen=yes") self.opener=null self.close() a.location=file+"?fullscreen=yes"; } } </script>