
function sizeup987(){
    var small_style = document.getElementById('eselcornerSmall').style;
    var big_style = document.getElementById('eselcornerBig').style;
	big_style.top = '0px';
	big_style.visibility = '';
	big_style.display = '';
	//small_style.display = 'none';
	small_style.visibility = 'hidden';
	small_style.top = '-1000px';
}
function sizedown987(){
    var big_style = document.getElementById('eselcornerBig').style;
    var small_style = document.getElementById('eselcornerSmall').style;
	small_style.top = '0px';
	small_style.visibility = '';
	small_style.display = '';
	//big_style.display = 'none';
	big_style.visibility = 'hidden';
	big_style.top = '-1000px';
}


