//*********************************************************
// 目的：    加载样式表
// 输入：    无
// 返回：    无
//*********************************************************
function LoadActiveStyleSheetInter(){

	var title=GetCookie("international")
	var a;

	if (title) {

		a = document.getElementsByTagName("link")[0];

		a.href=str00+"style/international/"+title+".css"

	}

}
//*********************************************************




//*********************************************************
// 目的：    设置样式表
// 输入：    title
// 返回：    无
//*********************************************************
function SetActiveStyleSheetInter(title){

	var a;

	if (title) {

		{
			SetCookie("international",title,365);
		}
		a = document.getElementsByTagName("link")[0];

		a.href=str00+"style/international/"+title+".css"

	}

}
//*********************************************************
