function remove(){
document.body.removeChild(document.getElementById("showDive"));
}
function insert(hid,showid){
var elment=document.getElementById(showid);
var elmentid=document.getElementById(hid).value;
if(document.getElementById("showDive")!=null){
remove();
}
var div=window.document.createElement("div");
div.innerHTML = "<font color='red'>"+elmentid+"</font>";
div.setAttribute("id","showDive");
div.className ="css2";
div.style.height="100px";
div.style.height = "30px";
div.style.top=document.body.scrollLeft+event.clientY;
div.style.left=document.body.scrollLeft+event.clientX;
window.document.body.appendChild(div);
}