/**
 * @author wi3dzmin
 */
function List(ListId, CatNameId, FormId)
{
	this.ListObject = document.getElementById(ListId);
	this.CatNameObject = document.getElementById(CatNameId);
	this.FormObject = document.getElementById(FormId);
	this.reload = reload;
}

function reload()
{
	var catcol = this.FormObject.catcol.value;
	var licol = this.FormObject.licol.value;
	var lisize = parseInt(this.FormObject.lisize.value);
	var catsize = parseInt(this.FormObject.catsize.value);
	var bold = this.FormObject.b.checked;
	var italic = this.FormObject.i.checked;
	var style = this.FormObject.list.value;
	
	if(bold == true)
	{
		bold = "bold";
	}
	else
	{
		bold = "normal";
	}
	if(italic == true)
	{
		italic = "italic";
	}
	else
	{
		italic = "normal";
	}
	if(licol == "")
	{
		licol = "000000";
	}
	if(catcol == "")
	{
		catcol = "000000";
	}
	this.CatNameObject.style.color = "#"+catcol;
	this.CatNameObject.style.fontSize = catsize+"px";
	this.ListObject.style.color = "#"+licol;
	this.ListObject.style.fontSize = lisize+"px";
	this.ListObject.style.fontWeight = bold;
	this.ListObject.style.fontStyle = italic;
	this.ListObject.style.listStyle = style;
	
}

