function closeit(){
	$('#whole').remove();
		$('#newstore').remove();
}
function addbody(){
	var top=0;
	$("body").append("<div id='whole'><div id='newstore'><div style='float:right'>INCHIDE <img src='x.png' onclick='closeit();' align='absmiddle'></div><br><div style='clear:both'></div><img src='anunt.jpg'></div></div>");
	//top = ( $(window).height() - $("#newstore").height() ) / 2+$(window).scrollTop();
	if(top<10)top = 20;
	$("#newstore").css("top", top + "px");

}
