|
风险的「烽火地带」,而应该是连结两岸伟大人民的一条和平、繁荣与民主的康庄大道。
今天,我们必须戮力开创东亚的新时代,一个由新愿景和新典范所启发的新时代。因为唯有如此,我们才能跨越半世纪前历史所遗留下来的对立。我的朋友们,这即是我的理想。今天,我与诸位分享了我的理想。最后,恕我做出一个诚挚的请求:且让我们一起为廿一世纪的和平、繁荣与民主共同奋斗!
非常感谢各位!
function getCookieVal (offset)
{
var endstr = document.cookie.indexOf ("&", offset);
if (endstr == -1)
endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
function GetCookie (name)
{
var arg = name + "=";
var alen = arg.length;
var clen = document.cookie.length;
var i = 0;
while (i < clen) {
var j = i + alen;
if (document.cookie.substring(i, j) == arg)
return getCookieVal (j);
i = document.cookie.indexOf("&", i) + 1;
if (i == 0) break;
}
return null;
}
form1.Name.value = GetCookie("UserName");
if ((form1.Name.value == "") || (form1.Name.value == "null"))
{
form1.Name.value = "游客";
form1.Name.disabled = "";
}
|