function as_disp_div(f){
	

//alert(f);	
	
	for(i = 1; i<5; i++)
	{
		obj = document.getElementById('app'+i);

		if(i == f)
		{
			obj.style.display = '';
		}else{
			obj.style.display = 'none';
		}
	}


}
