function sendposition(el) {
 // CGI呼び出し
 xmlhttp.open("GET", "setpos.cgi?image=" + el +
  "&x=" + getLEFT(el) + "&y=" + getTOP(el),true);
 // 完了時のコールバック定義
 xmlhttp.onreadystatechange=function() {
  if (xmlhttp.readyState==4) {
   dummy = xmlhttp.responseText
  }
 }
 xmlhttp.send(null)
}