﻿// Enveloppe formations
function mailImage(lien){
  mail_str = "mailto:?subject=Photo Texxas café";
  mail_str += "&body=Cette photo " + lien + " vous est recommandée par un ami."; 
  location.href = mail_str;
}

// Popup Art
function getBodyHeight(){
  // FF
  var height = document.documentElement.scrollHeight;

  // IE 7/8 + Opera
  if(document.documentElement.clientHeight > height ) {
    height  = document.documentElement.clientHeight;
  }
  // Safari
  if(document.body.scrollHeight > height) {
    height = document.body.scrollHeight;
  }
  return height;
}
function getWindowHeight(){
	var windowHeight=0;
	if (typeof(window.innerHeight)=='number'){
		windowHeight=window.innerHeight;
	}
	else{
		if (document.documentElement&&document.documentElement.clientHeight){
			windowHeight = document.documentElement.clientHeight;
		}
		else{
			if (document.body&&document.body.clientHeight){
				windowHeight=document.body.clientHeight;
			}
		}
	}
	return windowHeight;
}
function setPopSalon(){
	if(document.getElementById){
		var bodyHeight = getBodyHeight();
		var windowHeight = getWindowHeight();
		document.getElementById('divMenu').style.height = bodyHeight+'px';
		document.getElementById('divContPop').style.height = windowHeight+'px';
	}
}
function fermePopSalon(){
		document.getElementById('divMenu').style.display = 'none';
}