function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
	   anchor.getAttribute("rel") == "external")
	 anchor.target = "_blank";
 }
}
function openImage(x,h,w){
  
 with(open('','fotka','width='+w+',height='+h+',left=0,top=0')){
  document.write('<html><head><title>dj Mario</title>'+
  '<script type="text/javascript">function L(I){'+
  'I.parentNode.style.visibility="visible";'+
  'focus();resizeTo(I.width+6,I.height+50)}<\/script></head>'+
  '<body style="background-color:#273343;'+
  'border:0px;font:normal bold 14px Verdana">'+
  '<div style="color:white">Loading image...</div><div style="overflow:hidden;'+
  'position:absolute;visibility:hidden;left:0;top:0;padding:0;argin:0">'+
  '<a href="javascript:window.close()"><img onerror="L=parentNode.previousSibling;L.innerHTML='+
  '\'loading error... sorry\';L.style.backgroundColor=\'red\';'+
  'window.focus()" style="border:0" title="Close window" onload="L(this)" src="'+x+'"></a></div></body></html>')
  document.close()
 }
}
window.onload = externalLinks;

