// JavaScript Document
function changeBGColor(idName, txtColor){
	var x = document.getElementById(idName);
	x.style.backgroundColor = txtColor;
}

function createContentTitle( title ){
	var x = '<span class="title_one">';
	var x = x + title + '</span><br /><span class="title_two">Southwest Border Nonprofit Resource Center<br />';
	var x = x + '</span><span class="title_three">A component of CoSERVE</span>';
	var x = x + '<hr align="left" class="title_hr"/><br />';
	document.write( x );
}

function createContentTitle2( title, object ){
	var x = '<span class="title_one">';
	var x = x + title + '</span><br /><span class="title_two">Southwest Border Nonprofit Resource Center<br />';
	var x = x + '</span><span class="title_three">A component of CoSERVE</span>';
	var divObject = document.getElementById( object );
	divObject.innerHTML = x;
}
