/*嵌套*/
<!-- 
if (top.location != self.location)top.location=self.location; 
// -->

/*右键*/
document.oncontextmenu=new Function("event.returnValue=false");
document.onselectstart=new Function("event.returnValue=false");

/*底部
var statusmsg,msg2;
var i=0,j=0,k=0,timeID1;

function DynamicStatus()
{
 if (j == 0)
    {statusmsg="                                                                                                            ";
     GetDateTimex();            // 取得目前日期与时间
     window.status=statusmsg;   // 最从状态栏右边开始显示
     i=statusmsg.length; k=i;
     j=1; i--;
    }
 setTimeout("DynamicStatus()",1000);  // 再一次重右边跑起
}
DynamicStatus();

function RunSText()
{
 if (j > k)
    {i=0; j=0; k=0;}
 else
    {msg2=statusmsg.substr(j,i);
     window.status=msg2;          // 显示在状态栏
     j++; i--;
    }
 setTimeout("RunSText()",200);    // 向左移动制造跑马灯效果
}
RunSText();

function GetDateTimex()
{
 var nowDate,theDate,theDay,theYear,theMonth,theHour,theMin,theSec;
 weeks = new Array("日","一", "二","三","四","五","六");
 nowDate = new Date();

 theDate = nowDate.getDate();
 theDay = weeks[nowDate.getDay()];
 theYear = nowDate.getYear();
 theMonth = nowDate.getMonth() + 1;
 //theHour = nowDate.getHours();
 //theMin = nowDate.getMinutes(); if (theMin < 10) theMin = "0"+theMin;  // 小於 10 分补 0
 //theSec = nowDate.getSeconds(); if (theSec < 10) theSec = "0"+theSec;  // 小於 10 秒补 0
 statusmsg+=theYear+" 年 "+theMonth+" 月 "+theDate+" 日 "+"星期"+theDay;
 //theHour+":"+theMin+":"+theSec;
 statusmsg+="       ！八道选择题您就可以弹指间提交您的结婚意向和服务需求~尽在 聚隆婚庆 <在线提交结婚意向> 还不快来做~ ^_^..！";
}
*/