function function2() {
	initShowHideDivs();
	
	var height1=document.getElementById("myDiv").scrollHeight;
	
	if(height1<280){
		document.getElementById('myDiv').style.height=280+"px";
		height1=280;
	}
	
	document.getElementById("copyright").style.top=height1+300+"px";
}



