function visiblility(id1, dis1){
	document.getElementById(id1).style.display = dis1;
}
function visiblility2(id1, dis1, id2, dis2){
	document.getElementById(id1).style.display = dis1;
	document.getElementById(id2).style.display = dis2;
}
