/*******************************************************
********************************************************
* Publication
********************************************************
*******************************************************/
function publicationClose(action) {
	document.location = 'main.php?action=' + action;
}

function manageArpTypePieceJointe(pupId){
	// Première partie : vérification de la validité de l'action
	if ($('pup_objet_externe_' + pupId).value != '' 
			&& $('pup_type_piece_jointe_' + pupId).value != _prmIdArticleParagrapheTypePieceJointeObjetExterne) {
		$('pup_type_piece_jointe_' + pupId).value = _prmIdArticleParagrapheTypePieceJointeObjetExterne;
		showAlert($('publication_erreur_objet_externe_renseigne').value);
	} else if(($('doc_fichier_par_' + pupId).value !='' 
				|| parseInt($('doc_id_' + pupId).value) > 0) 
			&& $('pup_type_piece_jointe_' + pupId).value != _prmIdArticleParagrapheTypePieceJointeFichierJoint){
		$('pup_type_piece_jointe_' + pupId).value = _prmIdArticleParagrapheTypePieceJointeFichierJoint;
		showAlert($('publication_erreur_fichier_renseigne').value);
	}
	
	// Seconde partie : arrangement des éléments à afficher/masquer
	$('trFic_' + pupId + '_0').style.display = 'none';
	$('trFic_' + pupId + '_1').style.display = 'none';
	$('trFic_' + pupId + '_2').style.display = 'none';
	$('trFic_' + pupId + '_3').style.display = 'none';
	$('trFic_' + pupId + '_4').style.display = 'none';
	$('trFic_' + pupId + '_5').style.display = 'none';
	$('trDocLien_' + pupId + '_0').style.display = 'none';
	$('trDocLien_' + pupId + '_1').style.display = 'none';
	$('trObj_' + pupId + '_0').style.display = 'none';
	if($('pup_type_piece_jointe_' + pupId).value == _prmIdArticleParagrapheTypePieceJointeFichierJoint){
		$('trFic_' + pupId + '_0').style.display = '';
		$('trFic_' + pupId + '_1').style.display = '';
		$('trFic_' + pupId + '_2').style.display = '';
		$('trFic_' + pupId + '_3').style.display = '';
		$('trFic_' + pupId + '_4').style.display = '';
		$('trFic_' + pupId + '_5').style.display = '';
		if($('pup_doc_lien_type_' + pupId).value == _prmIdArticleParagrapheDocTypeLienUrl){
			$('trDocLien_' + pupId + '_0').style.display = '';
		} else if($('pup_doc_lien_type_' + pupId).value == _prmIdArticleParagrapheDocTypeLienArticleInterne){
			$('trDocLien_' + pupId + '_1').style.display = '';
		}
	} else if($('pup_type_piece_jointe_' + pupId).value == _prmIdArticleParagrapheTypePieceJointeObjetExterne) {
		$('trObj_' + pupId + '_0').style.display = '';
	}
}

function manageArpTypeDocLien(pupId){
	$('trDocLien_' + pupId + '_0').style.display = 'none';
	$('trDocLien_' + pupId + '_1').style.display = 'none';
	if($('pup_doc_lien_type_' + pupId).value == _prmIdArticleParagrapheDocTypeLienUrl){
		$('pub_id_externe_' + pupId).value = 0;
		$('trDocLien_' + pupId + '_0').style.display = '';
	} else if($('pup_doc_lien_type_' + pupId).value == _prmIdArticleParagrapheDocTypeLienArticleInterne){
		$('pup_url_externe_' + pupId).value = '';
		$('trDocLien_' + pupId + '_1').style.display = '';
	} else {
		$('pup_url_externe_' + pupId).value = '';
		$('pub_id_externe_' + pupId).value = 0;
	}
}

