
function popPubli(publiPath)
		{
			//popup size
			var width = 690;
			var height = 350;
			//get center coords
			var left = (screen.width - width) / 2;
			var top = (screen.height - height) / 2;
    		
			window.open( publiPath , 'site', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=690,height=350,left=' + left + ',top=' + top );

}