/*
 * ***** BEGIN LICENSE BLOCK *****
 *
 * This file is part of MediaIdea Project.
 * Copyright (c) 2008 MediaIdea Technologies. All rights
 * reserved.
 *
 * ***** END LICENSE BLOCK *****
 */
// <![CDATA[
function toggleOtherField(selectElemID, otherFieldId){

	if($('#'+selectElemID).val() == 'AUTRE' || $('#'+selectElemID).val() == 'ALTRO' || $('#'+selectElemID).val() == 'OTRO' || $('#'+selectElemID).val() == 'OUTRO'){
		$('#'+otherFieldId).show();
	}
	else {
		$('#'+otherFieldId).hide();
	}
}

function toggleList(firstList, secondList, firstContainer, secondContainer){

	if ($('#'+firstList).val() != ''){
		$('#'+secondContainer).hide();
	}
	else if ($('#'+secondList).val() != '') {
		$('#'+firstContainer).hide();
	}
	else {
		$('#'+firstContainer).show();
		$('#'+secondContainer).show();
	}
}

function toggleWeb(select, firstElem, secondElem){
	if ($('#'+select).val() != ''){
		$('#'+firstElem).hide();
		$('#'+secondElem).hide();
	}
	else {
		$('#'+firstElem).show();
		$('#'+secondElem).show();
	}
}

// ]]>