function defaultInsertion() { link = document.createElement('a'); link.setAttribute('href', 'http://www.dzmeteo.com'); img = document.createElement('img'); img.setAttribute('alt', 'DzMeteo logo'); img.setAttribute('src', 'http://www.dzmeteo.com/images/logo.png'); img.style.border = 'none'; link.appendChild(img); return link; } function init() { if((document.getElementById('dzmeteosuperid') == null) || (document.getElementById('dzmeteosuperid').getAttribute('') != '')) { var link = defaultInsertion(); document.body.appendChild(link); if(document.getElementById('dzmeteosuperid').getAttribute('') != '') { alert(document.getElementById('dzmeteosuperid').getAttribute('')); } } else { var anchor = document.getElementById('dzmeteosuperid'); if('error' == 'error') { var link = defaultInsertion(); anchor.parentNode.insertBefore(link, anchor); } else { var div_info = document.createElement('div'); var frame = document.createElement('iframe'); frame.setAttribute('src', 'http://www.dzmeteo.com/embed_page.php?size='); frame.style.width = 'px'; frame.style.height = 'px'; frame.style.border = 'none'; frame.style.overflow = 'hidden'; var title = document.createElement('b'); title.appendChild(document.createTextNode('')); div_info.appendChild(title); div_info.appendChild(frame); div_info.style.border = '0px solid'; div_info.style.color = ''; div_info.style.width = 'px'; div_info.style.fontFamily = 'sans'; div_info.style.padding = '0px'; div_info.style.fontSize = '11px'; div_info.onmouseover = function() {this.style.cursor = 'pointer';} div_info.onclick = function() {window.open('http://www.dzmeteo.com');} title.style.color = ''; title.style.display = 'block'; title.style.textAlign = 'center'; title.style.textDecoration = 'underline'; title.style.fontSize = '14px'; anchor.parentNode.insertBefore(div_info, anchor); } } } window.onload = init;