// JavaScript Document
//-------------------------
function popupCentrer(page,winName) 
{
	var destination="http://www.chezbogato.fr/?page_id="+page;
	options="resizable=yes,menubar=yes,scrollbars=yes,statusbar=yes";
	var largeur=600;
	if (screen.height > 600){
  		var hauteur=650;
	 }else{
		var hauteur=550;
	}
	var top=(screen.height-hauteur)/2;
	var left=(screen.width-largeur)/2;
  	window.open(destination,winName,"top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
	//winName.window.focus();
}
//-------------------------
//

// JQUERY SCRIPTS
// ici, on permet à "jQuery" de fonctionner avec "Prototype"
// voir http://www.honeytechblog.com/resolve-issues-jquery-lightbox-prototype-libraries/5072/
  var $j = jQuery.noConflict();
//$(document).ready(function() {
  function goToByScrollCarte(){
  // puis, on remplace les $ par jQuery
       jQuery('html,body').animate({scrollTop: jQuery("#carte").offset().top},'slow');
  }
  function goToByScroll(id){
  // puis, on remplace les $ par jQuery
       jQuery('html,body').animate({scrollTop: jQuery("#"+id).offset().top},'slow');
  }
//});

