function showBNR(imageFilePath, iw, ih) {


var container = document.getElementById("wishesImage");
var dR = document.createElement("div");
var dA = document.createElement("div");
var dI = document.createElement("img");
var sw = screen.width;
var sh = screen.height;
var posLeft = Math.ceil((990 -  iw) / 2);

dI.setAttribute("src", imageFilePath);
dI.setAttribute("width", iw);
dI.setAttribute("height", ih);



dR.style.position = "relative";
dR.style.cursor = "pointer";

container.setAttribute("onclick", "this.style.display = 'none';");



dA.style.position =  "absolute";


dA.appendChild(dI);

 
if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ 
  dA.style.top = "120px";
} else {
  dA.style.top = "120px";
}


dA.style.left = "" + posLeft + "px";

dR.appendChild(dA);
container.appendChild(dR);

return 1;
}
