function divdisplay(id,st){
	if(st==1){
	document.getElementById(id).style.display='';
	}
	if(st==2)
	document.getElementById(id).style.display="none";
}
