//Show or Hide Account Boxes - For Mockup Demo Purposes
function showhide01() {
//Hide
if (document.getElementById) {
	document.getElementById('tabs_two').style.display = 'none';
	document.getElementById('tabs_three').style.display = 'none';
	} 
//Show
if (document.getElementById) { 
	document.getElementById('tabs_one').style.display = 'block';
	document.getElementById('tabs_main').style.backgroundPosition = '0 0';
	} 
}
function showhide02() {
//Hide
if (document.getElementById) {
	document.getElementById('tabs_one').style.display = 'none';
	document.getElementById('tabs_three').style.display = 'none';
	} 
//Show
if (document.getElementById) { 
	document.getElementById('tabs_two').style.display = 'block';
	document.getElementById('tabs_main').style.backgroundPosition = '0 -308px';
	} 
}
function showhide03() {
//Hide
if (document.getElementById) {
	document.getElementById('tabs_one').style.display = 'none';
	document.getElementById('tabs_two').style.display = 'none';
	} 
//Show
if (document.getElementById) { 
	document.getElementById('tabs_three').style.display = 'block';
	document.getElementById('tabs_main').style.backgroundPosition = '0 -154px';
	} 
}
