// Incarca Iframe dinamic
function loadIframe(theURL) {
	document.getElementById("mainContent").src=theURL;
}

// schimba height la obiect dupa: ia inaltimea de la "obj1" si o da la "obj"
function resizeMe(obj,obj1){ 
docHeight = obj1.document.body.scrollHeight
 obj.style.height = docHeight + 'px'
 }