// JavaScript Document
var Layout = new Object();

Layout.addSWF = function swf(swfFile, width, height, id) {
	if(id==null) id="Index";
	document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\""+width+"\" height=\""+height+"\" id=\""+id+"\" align=\"middle\" hidefocus=\"true\">");
	document.write("<param name=\"allowScriptAccess\" value=\"sameDomain\" />");
	document.write("<param name=\"movie\" value=\""+swfFile+"\"/>");
	document.write("<param name=\"menu\" value=\"false\" />");
	document.write("<param name=\"quality\" value=\"high\" />");
	document.write("<param name=\"wmode\" value=\"transparent\" />");
	document.write("<param name=\"bgcolor\" value=\"#ffffff\" />");
	document.write("<embed src=\""+swfFile+"\" hidefocus=\"true\" menu=\"false\" wmode='transparent' quality=\"high\" bgcolor=\"#ffffff\" width=\""+width+"\" height=\""+height+"\" name=\""+id+"\" align=\"middle\" allowscriptaccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />  ");  
	document.write("</object>");
}

/*
Layout.addSWF = function swf(swfFile, width, height) {
	swfFileName = swfFile.replace(".swf","");

	AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width',width,'height',height,'src',swfFileName,'quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie',swfFileName ); //end AC code
	document.write("<noscript><object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0\" width=\""+width+"\" height=\""+height+"\">");
	document.write("<param name=\"movie\" value=\""+swfFile+"\">");
	document.write("<param name=\"quality\" value=\"high\">");
	document.write("<embed src=\""+swfFile+"\" quality=\"high\" pluginspage=\"http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\""+width+"\" height=\""+height+"\"></embed>");
	document.write("</object>");
	document.write("</noscript>");
}
*/

Layout.bottom = function bottom() {
	document.write("<div align=\"right\" style=\"color:#999999; font-size:10px; font-family:Arial, Helvetica, sans-serif;\">");
    document.write("<p>提供免費網上日記、討論區、相簿、留言板，一個與別不同的Blog | 網上日誌 <br />如不能瀏覽此網站, 請按此下載<a style='color:#666666;' href=\"http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash\" target=\"_blank\">Flash Player</a><br>Best View With 1024x768.</p>");
    document.write("</div>	");	
}