function popup(id,lft,top){
			var temp = $("#"+id).html();
			$("td#popdiv").html(temp);
			$("td#popdiv #"+id).show();
			$(".popmain").css({'left' : lft+"px",'top':top+"px"});
			$(".popmain").fadeIn("normal");
			}

function popout(){
			$(".popmain").fadeOut("normal");
			}
			


