function InitStyle()
{
	var strCss = "Normal";

	if(strCss == "Small")
		document.write('<link rel="stylesheet" title="Small" href="2006style_s.css" type="text/css">');
	else
		document.write('<link rel="stylesheet" title="Small" href="2006style_s.css" type="text/css" disabled>');

	if(strCss == "Normal")
		document.write('<link rel="stylesheet" title="Normal" href="2006style.css" type="text/css">');
	else
		document.write('<link rel="stylesheet" title="Normal" href="2006style.css" type="text/css" disabled>');

	if(strCss == "Large")
		document.write('<link rel="stylesheet" title="Large" href="2006style_l.css" type="text/css">');
	else
		document.write('<link rel="stylesheet" title="Large" href="2006style_l.css" type="text/css" disabled>');

	return true;
}

function SetStyle(strName)
{
	var intCount;

	for(intCount = 0;intCount < document.styleSheets.length; intCount++) {
		if(document.styleSheets[intCount].title == strName)
			document.styleSheets[intCount].disabled = false;
		else
			document.styleSheets[intCount].disabled = true;
	}

	//setCookie("css", strName, 30, "/", null);
}

function UpdateStyle()
{
	var strName;

	strName = getCookie("css")

	if((typeof(strName) != "undefined")&&(strName != null))
		setCookie("css", strName, 30, "/", null);
}