function send_button(adres,tytul,horizontal){
	window.open(adres, tytul,"toolbar=0,location=0,directories=0,resizable=0,status=0,menubar=0,scrollbars=1,"+ horizontal);
}

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") == "new")
     anchor.target = "_blank";
   if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "popup") {
    anchor.href="javascript:send_button('" + anchor.href + "','','height=430,width=780');";
   }
 }
}



function generateEmail(email){
	document.write('<a href=\"mailto:'+email+'\">');
	document.write(email+'<\/a>');
}


