function calcHeight()
{
	
	try {
		//document.getElementById('album').height=0;
		var doch=document.getElementById('album').contentDocument.body.scrollHeight;
  		var docw=document.getElementById('album').contentDocument.body.scrollWidth;
		document.getElementById('album').height=doch+25;
		document.getElementById('album').width=docw;
		clearInterval(runningInCircles);
	} catch(a) {
		document.getElementById('errorcount').value=parseInt(document.getElementById('errorcount').value)+1;
		if (document.getElementById('errorcount').value>=5) {clearInterval(runningInCircles);}
	}
}
function loadalbum(location) {
	d = document.getElementById('Container');
	try {
	d.removeChild(document.getElementById('album'));
	} catch(a) {}
	if (navigator.userAgent.indexOf('MSIE')){
		d.innerHTML='<object data="archive/'+location+'/index.html" id="album" type="text/html" width="642" height="500"></object>';
	} else
	{
	joebob = document.createElement('OBJECT');
	joebob.setAttribute("type","text/html");
	joebob.setAttribute("id","album");
	joebob.setAttribute("data","archive/"+location+"/index.html");
	d.appendChild(joebob);
	}
	runningInCircles = setInterval(calcHeight,100);
}
