
// create window
var newdiv = document.createElement('popupdiv');
newdiv.id = 'popup_id';
newdiv.style.margin = '0px';
newdiv.style.align = 'center';
newdiv.style.textalign = 'center';
newdiv.style.padding = '0px';
newdiv.style.width = '99%';
newdiv.style.height = '99%';
newdiv.style.border = "0px dotted red";
newdiv.style.background = "url(http://randaberg-mulighetsstudiet.mymixmaster.com/bg.png)";
newdiv.innerHTML = "<div align=\"center\" style=\"width:100%;height:100%;vertical-align:middle;text-align:center\"><div style=\"padding:40px;\"><img src=\"http://randaberg-mulighetsstudiet.mymixmaster.com/popup.jpg\" width=\"750\" height=\"500\" border=\"0\" usemap=\"#Map\" /><map name=\"Map\" id=\"Map\"><area shape=\"rect\" coords=\"313,465,496,487\" href=\"http://randaberg-mulighetsstudiet.mymixmaster.com/\" /><area shape=\"rect\" coords=\"669,13,738,34\" href=\"#close\" /></map></div></div>";
newdiv.style.position = 'absolute';
newdiv.style.top = 0;
newdiv.style.left = 0;
document.body.appendChild(newdiv);
document.getElementById('popup_id').style.zIndex = 100000;
var div = document.getElementById('popup_id');
div.onclick = mouseevt;
function mouseevt(e) {
	div.style.display = 'none';
}

