
function tabSwitch(tabId,otherTab,otherTab2) {
	
	var tab = document.getElementById(tabId);
	var other = document.getElementById(otherTab);
	var other2 = document.getElementById(otherTab2);
	
	var tabBox = document.getElementById(tabId+'Box');
	var otherBox = document.getElementById(otherTab+'Box');
	var otherBox2 = document.getElementById(otherTab2+'Box');
	
	tab.className = 'selected';
	other.className = ' ';
	other2.className = ' ';
	
	tabBox.style.display = 'block';
	otherBox.style.display = 'none';
	otherBox2.style.display = 'none';
}

function switchBkOn(obj) {
	obj.style.background = '#000000';
}
function switchBkOff(obj) {
	obj.style.background = '';
}

function toggle(obj) {
	elem = document.getElementById(obj);
	if(elem.style.display == 'none'){
		elem.style.display = 'block';
		document.getElementById('sendmsg').style.display = 'none';
		var x=document.forms.sendjob;
		document.forms.sendjob.femail.style.border = '1px solid #ddd';
    	x.reset();
		document.getElementById('footer').style.bottom = '0';
	}else{
		elem.style.display = 'none';
		document.getElementById('footer').style.margin = '0';
		document.getElementById('footer').style.bottom = '';
	}
}
