// remove IE embed border
// must load from an EXTERNAL script (code cannot be inline)

var blah = document.getElementById("axcon");
var html = blah.outerHTML;
blah.removeNode();
document.write(html);	
