// JavaScript Document

function show_tab1() {
	show('tab1');
	hide('tab2');
	hide('tab3');
	hide('tab4');
}
function show_tab2() {
	hide('tab1');
	show('tab2');
	hide('tab3');
	hide('tab4');
}
function show_tab3() {
	hide('tab1');
	hide('tab2');
	show('tab3');
	hide('tab4');
}
function show_tab4() {
	hide('tab1');
	hide('tab2');
	hide('tab3');
	show('tab4');
}

function show(id) {
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(id).style.display = 'block';
	} else {
		if (document.layers) {	
			document.id.display = 'block';
		} else {
			document.all.id.style.display = 'block';
		}
	} 
}


function hide(id) {
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(id).style.display = 'none';
	} else {
		if (document.layers) {	
			document.id.display = 'none';
		} else {
			document.all.id.style.display = 'none';
		}
	}
}
