// Created by Remyx 13/02/2004
// Fonction Pop-up multi-resolution, parametrable

function pop_gal(tit) {
	 wi=430;
	 he=370;
	 if (screen.width <= 640) pops=window.open(tit, '', 'resizable=yes, location=no, menubar=no, width='+wi+', height='+he+', status=no, scrollbars=auto');
	 else if (screen.width == 800 ) pops=window.open(tit, '', 'resizable=yes, location=no, menubar=no, width='+wi+', height='+he+', top=140, left=180, status=no, scrollbars=auto');
	 else if (screen.width == 1024 ) pops=window.open(tit, '', 'resizable=yes, location=no, menubar=no, width='+wi+', height='+he+', top=180, left=280 , status=no, scrollbars=auto');
	 else if (screen.width == 1152 ) pops=window.open(tit, '', 'resizable=yes, location=no, menubar=no, width='+wi+', height='+he+', top=280, left=380 , status=no, scrollbars=auto');
	 else if (screen.width == 1280 ) pops=window.open(tit, '', 'resizable=yes, location=no, menubar=no, width='+wi+', height='+he+', top=300, left=360 , status=no, scrollbars=auto');
	 else if (screen.width == 1280 && screen.height==1024 ) pops=window.open(tit, '', 'resizable=yes, location=no, menubar=no, width='+wi+', height='+he+', top=330, left=360 , status=no, scrollbars=auto');
	 else pops=window.open(tit, '', 'resizable=yes, location=no, menubar=no, width='+wi+', height='+he+', status=no, scrollbars=auto');
	 pops.focus();	 
}

