var $=function(id) {
return document.getElementById(id);
}
var notify=function(s,r) {
if(!$("center")) {
var n = document.createElement("div");
n.setAttribute("id", "center");
n.setAttribute("class", "center");
document.body.appendChild(n);
}
if(!$("notify")) {
var n = document.createElement("div");
n.setAttribute("class", "notify");
var n2 = document.createElement("dl");
n2.setAttribute("id", "notify");
n.appendChild(n2)
$("center").appendChild(n);
}
var dt = document.createElement("dt");
var ddt = document.createTextNode(s);
dt.appendChild(ddt);
$("notify").appendChild(dt);
if(r!=null){
var dd = document.createElement("dd");
var ddt2 = document.createTextNode(r);
dd.appendChild(ddt2);
$("notify").appendChild(dd);
}
}
|