// 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% Desarrollo Interno':
			hideElement('npi');
			hideElement('npo');
			hideElement('cot');
			break;
		case 'Outsourcing Parcial':
			showElement('npi');
			showElement('npo');
			showElement('cot');			
			break;
		case '100% Outsourcing':
			hideElement('npi');
			showElement('npo');
			showElement('cot');			
			break;
		default:
			hideElement('npi');
			hideElement('npo');
			hideElement('cot');
			break;
	}

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