function calcHeight(elem){
	var the_height=document.getElementById(elem).contentWindow.document.body.scrollHeight;//find the height of the internal page
	if (the_height < 800) the_height=800;
	document.getElementById(elem).style.height=the_height;//change the height of the iframe
	//document.getElementById(elem).style.height=the_height + 20;//change the height of the iframe
	//document.getElementById(elem).style.width='100%';
	//alert(elem + " - " + the_height);
}

function calcHeightTop(frame_name) {
	a= parent.document.getElementById(frame_name);
	if (a){
		the_height= a.contentWindow.document.body.scrollHeight;
		//alert(the_height);
		a.style.height= the_height;
		//a.style.height= the_height + 20;
		//a.style.width='100%';
	}
}

function ozadje(id, stil){
	if(id!=old){
		a= document.getElementById(id);
		a.className=stil;
		a.style.cursor= 'pointer';
	}
}
function ozadje2(id, stil){
	if(id!=old2){
		a= document.getElementById(id);
		a.className=stil;
		a.style.cursor= 'pointer';
	}
}
old = '';
old2 = '';
function onoff(id, id2){
	if(old!=""){
		b=document.getElementById(old);
		b.className="meniL1";
	}
	if(old2!=""){
		b=document.getElementById(old2);
		b.className="meniL2";
	}
	b=document.getElementById(id);
	b.className="meniL1klik";
	if(id2!=""){
		b=document.getElementById(id2);
		b.className="meniL2klik";
	}
	old=id;
	old2=id2;
}
function glavaChange(tekst){
	parent.document.glava_flash.SetVariable("nasl", tekst);
	parent.document.glava_flash.TCallLabel('/', 'menjaj');
}
