/* 20041211 WL:
 * Update language link URL (depreciated as it requires script execution)
 */
{
	if ( document.getElementById )
	{
		var linkid = document.getElementById('languagelink');

		if ( linkid )
		{
			var ret_exc  =  ("" + document.location).search(/^.*\/fb\/.*/)
			             && ("" + document.location).search(/^.*\/yb\/.*/);
			var ret_en   = ("" + document.location).search(/^.*\/$/);
			var ret_eni  = ("" + document.location).search(/^.*\/index\.html$/);
			var ret_tci  = ("" + document.location).search(/^.*\/index-tc\.html$/);

			if ( ret_exc==0 ) /* exceptional cases */
			{}
			else if ( ret_en==0 ) /* English index pages */
				linkid.href = document.location + "index-tc.html";
			else if ( ret_eni==0 ) /* English index pages */
				linkid.href = ("" + document.location).replace(/index\.html$/,"index-tc.html");
			else if ( ret_tci==0 ) /* Traditional Chinese pages */
				linkid.href = ("" + document.location).replace(/index-tc\.html$/,"index.html");
		}
	}
}








/*
 * General options
 */
var doc_root      = "/hkfwo";
var is_IE         = (navigator.appName == ("Microsoft Internet Explorer")) ? 1 : 0;










/*
 * Special features
 */
function main_message_window(dont_care)
{
	/*
	 * window.open(doc_root+"/events/04pop/message-20040323.html","popupwin","width=394,height=311");
	 */
	/* In the Winds of Love, 20050813 until 20050827
	 * window.open("/hkfwo/hkfywo/events/2005hkfywogala/message.html","popupwin","width=300,height=200");
	 */
	return true;
}

function message_window(dont_care)
{
	/* Join and Feel the Difference, 20040513 until 20040628
	 * window.open(doc_root+"/hkfywo/message-20040323.html","popupwin","width=327,height=564");
	 */
	/* Building Artists of The Future, 20040628 to ...
	 * window.open(doc_root+"/hkfywo/message-20040628.html","popupwin","width=496,height=324");
	 */
	window.open("/hkfywo/message-20080728.html","popupwin","width=746,height=814");
	return true;
}

