/*
function calcHeight()
{
	//récupère la hauteur de la page
	var the_height = document.getElementById('WordPressKPI').contentWindow.document.body.scrollHeight;
	//change la hauteur de l'iframe
	alert(the_height);
	document.getElementById('WordPressKPI').height = the_height;

}

$(document).ready(function() {
	//var theFrame = $('#WordPressKPI', parent.document.body);
	//$('#WordPressKPI').height($(document.body).height() - 30);
	
	var height = $('body').height();
	$('#WordPressKPI', parent.document.body).height(height);
    //$('#WPDiv').css('height', height+'px');
    //$('#WPDiv').height(height);
	//$("#banniere").click(function() {
	//	$("#WordPressKPI").height($("#WordPressKPI").contents().find("body").outerHeight());
	//});
});
*/

//var the_height = document.getElementById('content').height;
//document.parent.getElementById('WordPressKPI').height = the_height;

