	/**
	 *	在 DOM 架構下增加一個 Iframe 的 Tag
	 *
	 */

	reIframe = document.createElement("iframe");

	/**
	 *	設定 Iframe 的各項屬性
	 *
	 */
	
	reIframe.id = "transport_love";
	reIframe.frameBorder = "0px";
	reIframe.style.border = "0px solid white";
	reIframe.allowTransparency = true;
	reIframe.width = "160px";
	reIframe.height = "240px";
	reIframe.scrolling="no";

	/**
	 *	設定 Iframe 讀取遠端檔案的路徑（版型）
	 *
	 */
	
	reIframe.src = "http://www.books.com.tw/exep/activity/2007/10/xmas/xmasbox_blog.php?remote_url=" + window.location;

	/**
	 *	把整個 Iframe Append 到 DOM 下
	 */

	document.body.appendChild(reIframe);
	objScript = document.getElementById('books_xmas');
	objIframe = document.getElementById('transport_love');
	objScript.parentNode.insertBefore(objIframe,objScript);


