﻿var TheMainTitlesFlag=0;
var AboutHTML=""
	+"<div id=\"About_Box_1\"></div>"
	+"<div id=\"About_Box_2\"></div>"
	+"<div id=\"About_Box_3\"></div>"
	+"<div id=\"About_Lable_1\"><img src=\"images/logo.jpg\" width=\"186\" height=\"80\"></div>"
	+"<div id=\"About_Lable_2\"><u>Copyright (c) 2005-2007 Bokavan Corp</u></div>"
	+"<div id=\"About_Lable_3\">BICQ <REPLACE_VERSION></div>"
	+"<div id=\"About_Lable_4\">Last Update <REPLACE_LAST_UPDATE></div>"
	+"<div id=\"About_Lable_5\">License To: <REPLACE_LISENCE_TO></div>"
	+"<div id=\"About_Lable_6\"><input type=\"submit\" class=\"button\" onClick=\"CloseAbout();\" onFocus=\"this.blur();\" value=\"确定\"></div>"
	+"";

var HelpHTML=""
	+"<iframe width=\"100%\" height=\"100%\" src=\"http://help.bicq.org/v2x/\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"auto\" hspace=\"0\" vspace=\"0\" frameborder=\"0\"></iframe>"
	+"";

function ShowAbout() {
	var sAboutHTML=AboutHTML;
	sAboutHTML=sAboutHTML.replace(/<REPLACE_VERSION>/gi,BICQ_VERSION);
	sAboutHTML=sAboutHTML.replace(/<REPLACE_LAST_UPDATE>/gi,BICQ_LAST_UPDATE);
	sAboutHTML=sAboutHTML.replace(/<REPLACE_LISENCE_TO>/gi,BICQ_LISENCE_TO);
	CreateWindows("About",0,0,430,370,"images/skins/bicq/title.gif","关于BICQ",1,1,0,0,sAboutHTML,null,0);
	ShowWindow("About");
	if (TheMainTitlesFlag==0) {
		TheMainTitlesFlag=1;
		var sObj=document.createElement("span");
		sObj.innerHTML=GetMainTitleArr(CurrentBodyWidth,CurrentBodyHeight);
		$("WindowsGlobalBodyIDS").appendChild(sObj);
	}
	$("TheMainTitle").style.display="";
};

function CloseAbout() {
	CloseWindow("About");
};

function ShowHelp() {
	CreateWindows("Help",0,0,640,480,"images/skins/bicq/title.gif","在线帮助",1,1,1,1,HelpHTML,null,0);
	ShowWindow("Help");
};

function ShowAdmin(theURL) {
	window.open(theURL);
};
