function tab_op(){
	window.document.getElementById('tab1').style.display = 'block';
	window.document.getElementById('tab2').style.display = 'none';
	window.document.getElementById('tab3').style.display = 'none';
	window.document.getElementById('live_tab').className = 'op_ondemand';
}

function tab_cl_live(){
	window.document.getElementById('tab1').style.display = 'none';
	window.document.getElementById('tab2').style.display = 'block';
	window.document.getElementById('tab3').style.display = 'none';
	window.document.getElementById('live_tab').className = 'cl_live';
}

function tab_cl(){
	window.document.getElementById('tab1').style.display = 'none';
	window.document.getElementById('tab2').style.display = 'block';
	window.document.getElementById('tab3').style.display = 'none';
	window.document.getElementById('live_tab').className = 'cl_ondemand';
}

function tab_aw(){
	window.document.getElementById('tab1').style.display = 'none';
	window.document.getElementById('tab2').style.display = 'none';
	window.document.getElementById('tab3').style.display = 'block';
	window.document.getElementById('live_tab').className = 'aw_ondemand';
}


function tab_op_en(){
	window.document.getElementById('tab1').style.display = 'block';
	window.document.getElementById('tab2').style.display = 'none';
	window.document.getElementById('tab3').style.display = 'none';
	window.document.getElementById('live_tab').className = 'en op_ondemand';
}

function tab_cl_live_en(){
	window.document.getElementById('tab1').style.display = 'none';
	window.document.getElementById('tab2').style.display = 'block';
	window.document.getElementById('tab3').style.display = 'none';
	window.document.getElementById('live_tab').className = 'en cl_live';
}

function tab_cl_en(){
	window.document.getElementById('tab1').style.display = 'none';
	window.document.getElementById('tab2').style.display = 'block';
	window.document.getElementById('tab3').style.display = 'none';
	window.document.getElementById('live_tab').className = 'en cl_ondemand';
}

function tab_aw_en(){
	window.document.getElementById('tab1').style.display = 'none';
	window.document.getElementById('tab2').style.display = 'none';
	window.document.getElementById('tab3').style.display = 'block';
	window.document.getElementById('live_tab').className = 'en aw_ondemand';
}



