function openPop(page)
{
	//var winw =  Math.ceil(screen.width * 0.75);
	//var winh =  Math.ceil(screen.height * 0.75);

	var winw =  750;
	var winh =  650;


	window.open(page,'popup','top=0,left=0,width='+winw+',height='+winh+',scrollbars=yes,toolbar=no, menubar=no');
}




function openDoc(page)
{
	var winw =  450;
	var winh =  Math.ceil(screen.height * 0.5);


	window.open(page,'popup','top=0,left=0,width='+winw+',height='+winh+',scrollbars=yes,toolbar=no, menubar=no');
}



function trouver(type)
{
	var rech=document.recherche.keyword.value;

	var winw =  Math.ceil(screen.width * 0.75);
	var winh =  Math.ceil(screen.height * 0.75);

	window.open('find.html?keyword='+rech+'&type='+type,'popup','top=0,left=0,width='+winw+',height='+winh+',scrollbars=yes,toolbar=no, menubar=no');
}

function trouver_membre(type)
{
	var rech=document.recherche.keyword.value;

	var winw =  Math.ceil(screen.width * 0.75);
	var winh =  Math.ceil(screen.height * 0.75);

	window.open('find_membre.html?keyword='+rech+'&type='+type,'popup','top=0,left=0,width='+winw+',height='+winh+',scrollbars=yes,toolbar=no, menubar=no');
}