function showContactHtml() 
{
	loadSideBar();
	
	loadShortBanner();
	
	loadContactInfo();
}


function loadSideBar()
{
	var sidebarText = "<img src='../images/sidebar.jpg' width='96' height='688'  />";
	document.getElementById("sidebar").innerHTML = sidebarText;	
}

function loadShortBanner()
{
	var bannerText = "<img src='../images/bannerShort.jpg' width='785' height='80'  />";
	document.getElementById('banner').innerHTML = bannerText;	
}

function loadContactInfo()
{
	// Load the dot and info
	var dotText = "<div id='dot'><img src='../images/dot_contact.jpg' width='96' height='54' /></div>";
	document.getElementById( 'sub1' ).innerHTML = dotText;
	
	dotText = "<div id='contactInfo'></div>";
	document.getElementById( 'sub2' ).innerHTML = dotText;
	
	dotText = "<div id='contactInfo1' ></div> \
				<p><div id='contactInfo2' ></div></p> \
				<p><div id='contactInfo3' ></div></p> \
				<p><div id='contactInfo4' ></div></p>";

	document.getElementById( 'contactInfo' ).innerHTML = dotText;
	
	loadCInfo1();
	loadCInfo2();
	loadCInfo3();
	loadCInfo4();
}

function loadCInfo1()
{
	var infoText = "<div class='redHead'>XSLENT Energy Technologies, LLC</div>";
					
	document.getElementById( 'contactInfo1' ).innerHTML = infoText;
}

function loadCInfo2()
{
	var infoText = "<div class='redHead'>XET Headquarters</div> \
					7428 Redwood Blvd.</br><br>Suite 206 \
					<br>Novato, CA 94945</br> \
					<br>415-892-3182</br>";
					
	document.getElementById( 'contactInfo2' ).innerHTML = infoText;
}

function loadCInfo3()
{
	var infoText = "<p><div class='redHead'>Sales</div> \
					sales@xetsolar.com</p>";
					
	document.getElementById( 'contactInfo3' ).innerHTML = infoText;
}

function loadCInfo4()
{
	var infoText = "<div class='redHead'>Support</div> \
					support@xetsolar.com";
					
	document.getElementById( 'contactInfo4' ).innerHTML = infoText;
}