// JavaScript Document
function SetTheme()
	{
	var val="theme-00";
	if(!GetCookie('theme'))
		{
		CreateCookie('theme',val,7)
		}
	}

function SwitchTheme()
	{
	var val;
	if(GetCookie('theme'))
		{
		if(ReadCookie('theme')=="theme-00")
			val="theme-01";
		else
			val="theme-00";
		
		}
	else
		{
		val="theme-00";
		}
	CreateCookie('theme',val,7);
	location.reload();
	}

SetTheme();

document.write("<link href=\"../_css/" + ReadCookie('theme') + ".css\" rel=\"stylesheet\" type=\"text/css\" media=\"screen\" />");

