function popupwindow(o,d)
{
	var obj=document.getElementById(o);
if(d)

	obj.style.display="block";
	else
	obj.style.display="none";
}