/**
 * @author Tomita Militaru
 */

var footer_html = '<div class="default_footerCenter"><div class="category">CATEGORY<hr /><ul><li><a href="http://www.ropardo.ro" rel="external">Ropardo S.R.L</a></li><li><a href="http://www.itoutsourcingromania.com" rel="external">IT Outsourcing Romania</a></li><li><a href="http://wwww.igroupdecision.com" rel="external">iGroupDecision</a></li></ul></div><div class="category">CATEGORY<hr /><ul><li><a href="#" rel="external">test</a></li><li><a href="#" rel="external">test</a></li><li><a href="#" rel="external">test</a></li></ul></div><div class="category">CATEGORY<hr /><ul><li><a href="#" rel="external">test</a></li><li><a href="#" rel="external">test</a></li><li><a href="#" rel="external">test</a></li></ul></div></div>';
var i, a;
function insert_footer(bgColor, textColor) {
	if(bgColor == null)
		bgColor = '#067778';
	if(textColor == null)
		textColor = '#FFFFFF';
	document.getElementById("default_footer").innerHTML = footer_html;
	document.getElementById("default_footer").style.backgroundColor = bgColor; 
	document.getElementById("default_footer").style.color = textColor;
	document.getElementById("default_footer").style.display = 'none';
}
