
// Obavesti prijatelja o ovoj strani

var good;
function checkEmailAddress(field) {
// the following expression must be all on one line...
var goodEmail = field.value.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\..{2,2}))$)\b/gi);
if (goodEmail) {
good = true;
}
else {
alert('Molimo unesite ispravnu e-mail adresu.\nPlease enter a valid e-mail address');
field.focus();
field.select();
good = false;
   }
}
u = window.location;
m = "Pogledaj ovo / Look this...";
function mailThisUrl() {
good = false
checkEmailAddress(document.eMailer.address);
if (good) {
// the following expression must be all on one line...
window.location = "mailto:"+document.eMailer.address.value+"?subject="+m+"&body="+document.title+" "+u;
   }
}

function reklama_desno() {

 html = '&nbsp;'

	  document.write(html)
}
