// JavaScript Document

var indice=2;


function init(){
	document.getElementById("postule").style.display="none";
	document.getElementById("annonce").style.display="block";
}

function change(){
	
	var postule = document.getElementById("postule");
	var annonce = document.getElementById("annonce");
	var bt = document.getElementById("bt");

	if(annonce.style.display=="block"){
		annonce.style.display = "none";
		postule.style.display = "block";
		bt.src=""+HTMLURL+"img/recrutement/bt-annonce.gif";
	}else{
		annonce.style.display = "block";
		postule.style.display = "none";
		bt.src=""+HTMLURL+"img/recrutement/bt-postuler.gif";
	}
	
}

function popup(adresse){
	window.open(adresse, '', 'resizable=no, location=no, width=1, height=1, menubar=no, status=no, scrollbars=no, menubar=no');
}

