//ce script permet de reafficher une page dans sa frame
//si elle est appelee directement
function backtoframe(myFrameset, myUrl) {
	if (top == self) {
		self.location.href = myFrameset+"?"+myUrl;
	}
}

//OUVERTURE D'UN POPUP---------------------------------------------
function popup(theURL,winName,features) { 
	myPopup = window.open(theURL,winName,features);
	myPopup.focus()
}