// JavaScript Document
function showElement(id){
	document.getElementById(id).style.display="";
}
function hideElement(id){
	document.getElementById(id).style.display="none";
}
function changeDrop(toWhat){
	switch (toWhat) {
		case '100% In-house development':
			hideElement('npi');
			hideElement('npo');
			hideElement('cot');
			break;
		case 'Partially outsourced':
			showElement('npi');
			showElement('npo');
			showElement('cot');			
			break;
		case 'Completely outsourced':
			hideElement('npi');
			showElement('npo');
			showElement('cot');			
			break;
		default:
			hideElement('npi');
			hideElement('npo');
			hideElement('cot');
			break;
	}

}
function showOther(objselect){	
	if(objselect.value=='Other'){
		showElement(objselect.name + '_other_div');
	}else{
		hideElement(objselect.name + '_other_div');
	}
}