function showHide(id) { 
	if (document.getElementById) { 
		if (document.getElementById(id).style.display == "none"){
			document.getElementById(id).style.display = 'block';
		} else {
			document.getElementById(id).style.display = 'none';			
		}	
	} else { 
		if (document.layers) {	
			if (document.id.display == "none"){
			document.id.display = 'block';
			} else {
			document.id.display = 'none';
			}
		} else {
			if (document.all.id.style.visibility == "none"){
				document.all.id.style.display = 'block';
			} else {
				document.all.id.style.display = 'none';
			}
		}
	}
}

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

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

function showDetail1(){
	show('detail1');
	hide('detail2');
	hide('detail3');
	hide('detail4');
	hide('detail5');
	hide('detail6');
	hide('detail7');
	hide('detail8');
	hide('detail9');
	hide('detail10');
	hide('detail11');
	hide('detail12');
}

function showDetail2(){
	hide('detail1');
	show('detail2');
	hide('detail3');
	hide('detail4');
	hide('detail5');
	hide('detail6');
	hide('detail7');
	hide('detail8');
	hide('detail9');
	hide('detail10');
	hide('detail11');
	hide('detail12');
}

function showDetail3(){
	hide('detail1');
	hide('detail2');
	show('detail3');
	hide('detail4');
	hide('detail5');
	hide('detail6');
	hide('detail7');
	hide('detail8');
	hide('detail9');
	hide('detail10');
	hide('detail11');
	hide('detail12');
}

function showDetail4(){
	hide('detail1');
	hide('detail2');
	hide('detail3');
	show('detail4');
	hide('detail5');
	hide('detail6');
	hide('detail7');
	hide('detail8');
	hide('detail9');
	hide('detail10');
	hide('detail11');
	hide('detail12');
}

function showDetail5(){
	hide('detail1');
	hide('detail2');
	hide('detail3');
	hide('detail4');
	show('detail5');
	hide('detail6');
	hide('detail7');
	hide('detail8');
	hide('detail9');
	hide('detail10');
	hide('detail11');
	hide('detail12');
}

function showDetail6(){
	hide('detail1');
	hide('detail2');
	hide('detail3');
	hide('detail4');
	hide('detail5');
	show('detail6');
	hide('detail7');
	hide('detail8');
	hide('detail9');
	hide('detail10');
	hide('detail11');
	hide('detail12');
}

function showDetail7(){
	hide('detail1');
	hide('detail2');
	hide('detail3');
	hide('detail4');
	hide('detail5');
	hide('detail6');
	show('detail7');
	hide('detail8');
	hide('detail9');
	hide('detail10');
	hide('detail11');
	hide('detail12');
}

function showDetail8(){
	hide('detail1');
	hide('detail2');
	hide('detail3');
	hide('detail4');
	hide('detail5');
	hide('detail6');
	hide('detail7');
	show('detail8');
	hide('detail9');
	hide('detail10');
	hide('detail11');
	hide('detail12');
}

function showDetail9(){
	hide('detail1');
	hide('detail2');
	hide('detail3');
	hide('detail4');
	hide('detail5');
	hide('detail6');
	hide('detail7');
	hide('detail8');
	show('detail9');
	hide('detail10');
	hide('detail11');
	hide('detail12');
}

function showDetail10(){
	hide('detail1');
	hide('detail2');
	hide('detail3');
	hide('detail4');
	hide('detail5');
	hide('detail6');
	hide('detail7');
	hide('detail8');
	hide('detail9');
	show('detail10');
	hide('detail11');
	hide('detail12');
}

function showDetail11(){
	hide('detail1');
	hide('detail2');
	hide('detail3');
	hide('detail4');
	hide('detail5');
	hide('detail6');
	hide('detail7');
	hide('detail8');
	hide('detail9');
	hide('detail10');
	show('detail11');
	hide('detail12');
}

function showDetail12(){
	hide('detail1');
	hide('detail2');
	hide('detail3');
	hide('detail4');
	hide('detail5');
	hide('detail6');
	hide('detail7');
	hide('detail8');
	hide('detail9');
	hide('detail10');
	hide('detail11');
	show('detail12');
}



