var $ = function(i){return document.getElementById(i);}


// 通用显示flash函数 主要用于flash在sp2上需要点击一下的框架
function showFlash(iUrl,iWidth,iHeight,iWmode)
{
flash = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+ iWidth +'" height="' + iHeight +'" />';
flash = flash + '<param name="movie" value="'+ iUrl +'" />';
flash = flash + '<param name="quality" value="high" />';
flash = flash + '<param name="menu" value="false" />';
if (iWmode == 1) {
	flash = flash + '<param name="wmode" value="transparent" />';		
}
flash = flash + '<embed src="' + iUrl + '" width="'+ iWidth +'" height="'+ iHeight +'" menu="false" quality="high" ';
if (iWmode == 1) {
	flash = flash + 'wmode="transparent" ';		
}
flash = flash + ' pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" mwode="transparent"></embed>';
flash = flash + '</object>';

document.writeln(flash); 
//alert(flash);

}


//定义链接
var index="<a href=\"/\">我们的首页<\/a>";
var message="<a href=\"/message\">我们的留言板<\/a>";
var about="<a href=\"/about\">关于我们<\/a>";
var dao="<a href=\"/dao\">刀刀<\/a>";
var tang="<a href=\"/tang\">小唐<\/a>";
var photo="<a href=\"/photo\">我们的相册<\/a>";
var travel="<a href=\"/travel\">我们的足迹<\/a>";
var sitemap="<a href=\"/about\/sitemap.html\">网站地图<\/a>";
var copyright="<a href=\"/about\/copyright.html\">责权声明<\/a>";


//二级页左边导航
function lleft(type){
document.writeln("<h1>" + type + "<\/h1>");
document.writeln("<ul>");
document.writeln("<li>" + index + "<\/li>");
document.writeln("<li>" + about + "<\/li>");
document.writeln("<li class=\"sub\" style=\"border:none;\">" + dao + "<\/li>");
document.writeln("<li class=\"sub\">" + tang + "<\/li>");
document.writeln("<li>" + photo + "<\/li>");
document.writeln("<li>" + travel + "<\/li>");
document.writeln("<li>" + message + "<\/li>");
document.writeln("<li>" + sitemap + "<\/li>");
document.writeln("<\/ul>");
}


// 页面底部
function ffooter(){
document.writeln("<div>推荐使用IE7.0或者Firefox，以达到最佳浏览效果<br \/>");
document.writeln(index + " | " + about + " | " + copyright + " | " + sitemap + " | <a href=\"mailto:master@t2d2.net\">联系我们<\/a><br \/>");
document.writeln("Copyright <span class=\"copyright\">&copy;<\/span> 2008-2010 <a href=\"http:\/\/www.t2d2.net\">www.t2d2.net<\/a> All rights reserved 闽ICP备08103694号<\/div>");
}