onOpenHomePage:function(url){ //此处替换为要全屏观看的页面
var newwin=window.open("","", "status=yes,resizable=yes,location=yes,menubar=yes");// locationbar=no,newwin=window.open("","","resizable=yes,scrollbars=yes,noscrollbars") ;// 使窗口无滚动条
if ( newwin ) //弹出成功
{
if (document.all) //如果是IE
{
newwin.moveTo(0,0)// 新窗口左上角定位(负数默认为0)
newwin.resizeTo(screen.width,screen.height)
}
newwin.location=url ;
opener=null;
self.close();
}
else //未弹出来
{
window.location.href = url;
}
}