﻿// JScript File
function DetailView(ControlOne, ControlTwo, ControlThree){
	if(document.getElementById(ControlOne)){
		ControlId = document.getElementById(ControlOne);
	    ControlId.className = 'solution-summary';
	}
	
	if(document.getElementById(ControlTwo)){
		ControlId = document.getElementById(ControlTwo);
	    ControlId.style.display = 'none';
	}
	
	if(document.getElementById(ControlThree)){
		ControlId = document.getElementById(ControlThree);
	    ControlId.className = 'summary';
	}
}

function SummaryView(ControlOne, ControlTwo, ControlThree){
	if(document.getElementById(ControlOne)){
		ControlId = document.getElementById(ControlOne);
		ControlId.className = 'solution-summary hide';
	}
	
	if(document.getElementById(ControlTwo)){
		ControlId = document.getElementById(ControlTwo);
	    ControlId.style.display = '';
	}
	
	if(document.getElementById(ControlThree)){
		ControlId = document.getElementById(ControlThree);
	    ControlId.className = 'summary hide';
	}
}

