
/*
	* _cssupdate ()
*/
function _cssupdate (idEl,val,typ,suf) {
	
	if (typ == "color") {
		$(idEl).style.color = val;
		var temp = idEl+suf;
		$(temp).style.backgroundColor = val;
	}
	else if (typ == "bcolor") {
		$(idEl).style.backgroundColor = val;
		var temp = idEl+suf+"b";
		$(temp).style.backgroundColor = val;
	}
	else return false;
}

/*
	*
*/
function _uriupdate (val) {
	
	//uri_0
	$('uri_0').setAttribute("title",val,"false");
	$('uri_0').setAttribute("href",val,"false");
	
	//uri_1
	$('uri_1').setAttribute("href",val,"false");
	$('uri_1').setAttribute("title",val,"false");
	$('uri_1').firstChild.nodeValue = val;
}

/*
	*
*/
function _themeupdate (val) {
	
	//theme_0
	$('theme_0').setAttribute("title",val,"false");
	$('theme_0').firstChild.nodeValue = val;
	
}

/*
	*
*/
function _titreupdate (val) {
	
	//uri_0
	$('uri_0').firstChild.nodeValue = val;
	
}

/*
	*
*/
function _descupdate (val) {
	
	//desc_0
	$('desc_0').innerHTML = val;
	
}