10 janvier 2011 | LSFinteractive
";
var footstr = "";
var newstr = document.getElementById(printpage).innerHTML;
var oldstr = document.body.innerHTML;
document.body.innerHTML = newstr;
window.print();
document.body.innerHTML = oldstr;
return false;
}
function resizeText(multiplier)
{
if(document.body.style.fontSize == "8px" && multiplier == "-1")
{
return false;
}
if(document.body.style.fontSize == "16px" && multiplier == "1")
{
return false;
}
if(document.body.style.fontSize == ""){
document.body.style.fontSize = "12px";
}
document.body.style.fontSize = parseFloat(document.body.style.fontSize) + (multiplier * 1) +"px";
}