// JavaScript Document

function intro()
{
	var showRow = (navigator.appName.indexOf("Internet Explorer") != -1) ? "block" : "table-row";	
	document.getElementById('intro').style.display=showRow;	
	document.getElementById('specifications').style.display='none';
}
function specifications()
{
	var showRow = (navigator.appName.indexOf("Internet Explorer") != -1) ? "block" : "table-row";	
	document.getElementById('intro').style.display='none';	
	document.getElementById('specifications').style.display=showRow;
}





	