/*
function openMain(nElem,nStep,nHeight,mHeight){
	if(nHeight<mHeight){
		//alert(document.getElementById('main').offsetHeight);
		document.getElementById('main').style.height = nHeight+"px";
		var nextStep = nStep-nStep/100;
		var nextHeight = nHeight+nextStep;
		window.setTimeout("openMain('main',"+nextStep+","+nextHeight+","+mHeight+")", 50);
	}
}
window.onload = openMain('main',30,30,1000);
*/
