//----------
// FRAMEWORK TESTI
//
// Raccolta di strumenti per la gestione dinamica dei testi all'interno delle pagine.
//
//----------
// versione: 1.0
// data: 07/10/2008
// author: marco de carli
//----------

function addToDiv_html(objectId, html)
{
	TheBox = document.getElementById(objectId);
	TheBox.innerHTML += html;
}

function addToDiv_text(objectId, text)
{
	TheBox = document.getElementById(objectId);
	TheBox.innerText += text;
}

function addToDiv_filename(objectId, filename)
{
	TheBox = document.getElementById(objectId);
	TheBox.innerHTML = "<iframe src='"+filename+"' style='border-style: hidden; width: 100%; height:100%' frameborder=0></iframe>";
}

function addToDiv_filename_resize(objectId, filename)
{
	TheBox = document.getElementById(objectId);
	TheBox.innerHTML = "<iframe src='"+filename+"' style='border-style: hidden; width: 100%;' scrolling='NO' frameborder=0 onload='height = contentWindow.document.body.scrollHeight'></iframe>";
}

function addToDiv_filename_resize_Obj(TheBox, filename)
{
	TheBox.innerHTML = "<iframe src='"+filename+"' style='border-style: hidden; width: 100%; ' scrolling='NO' frameborder=0 onload='height = contentWindow.document.body.scrollHeight'></iframe>";
}

