// What data type is visible at the bottom
var ip_visibledatatype        = 0;

function IP_JumpToData(datatype) {
	if (datatype == 0) {
		// Hide the old region
		MeMSOObjectSetVisible('dataregion1', 0);
		// Show the new region
		MeMSOObjectSetVisible('dataregion0', 1);

        ip_visibledatatype = datatype;
		
	}
	else if (datatype ==1 ) {
	
		MeMSOObjectSetVisible('dataregion0', 0);
		// Show the new region
		MeMSOObjectSetVisible('dataregion1', 1);	
		
		ip_visibledatatype = datatype;
	}
	
	else if (datatype ==2 ) {
	
		MeMSOObjectSetVisible('dataregion3', 0);
		// Show the new region
		MeMSOObjectSetVisible('dataregion2', 1);	
		
		ip_visibledatatype = datatype;
	}
	
		else if (datatype ==3 ) {
	
		MeMSOObjectSetVisible('dataregion2', 0);
		// Show the new region
		MeMSOObjectSetVisible('dataregion3', 1);	
		
		ip_visibledatatype = datatype;
	}

	window.location.hash = 'specsregion';
} // IP_JumpToData