
/* Javascript Document */

function MM_openBrWindow(theURL,winName,features,position) { //v2.0	
   	pop = window.open(theURL,winName,features);
	var windowX = (screen.width - position)/2;
	pop.moveTo(windowX,100);
	pop.focus();
	//MM_openBrWindow('popup_envoiAmi.php','Envoi','scrollbars=no,width=416,height=442,resizable=no',442)
}
function popup(url,name) {
	MM_openBrWindow(url,name,'scrollbars=yes,width=600,height=500,resizable=no',500);
}


/*
$(document).ready(function(){
	champ=$("#f_recherche");
	init=$("#f_recherche").val();
	$("#f_recherche").click(function() {
		val=$("#f_recherche").val();
		if(val==init) $("#f_recherche").val('');
	});
	$("#f_recherche").blur(function() {
		val=$("#f_recherche").val();
		if(val.length==0) $("#f_recherche").val(init);
	});
});
*/	
