// JavaScript Document

	function HideContent(tabid, headerid){
		document.getElementById(tabid).style.display = "none";
		document.getElementById(headerid).className = "";

	}
	
	function ShowContent(tabid, headerid) {
		document.getElementById(tabid).style.display = "block";
		document.getElementById(headerid).className = "down";
	}
	
	function ShowHideConent(id, anchortext) {
	
		var tabs = new Array(7);
		var i = 0;
			
		// Set each  id
		tabs[0]='p7tpc1_1';
		tabs[1]='p7tpc1_2';
		tabs[2]='p7tpc1_3';
		tabs[3]='p7tpc1_4';
		tabs[4]='p7tpc1_5';
		tabs[5]='p7tpc1_6';
		tabs[6]='p7tpc1_7';

		var headers = new Array(7);
			
		// Set each  id
		headers[0]='p7tpb1_1';
		headers[1]='p7tpb1_2';
		headers[2]='p7tpb1_3';
		headers[3]='p7tpb1_4';
		headers[4]='p7tpb1_5';
		headers[5]='p7tpb1_6';
		headers[6]='p7tpb1_7';
	
		for (i = 0; i <= 6; i = i + 1) 
		{
			if(id == tabs[i]){
				ShowContent(tabs[i], headers[i]);			
			}
			else{
				HideContent(tabs[i], headers[i]);
			}
		}
		
		if(anchortext != ''){
			window.location.hash = anchortext; 
		}
	}
