function mail(who, domain) {
	window.location.href='mailto:' + who + '@' + domain;
}

function show_img(width, height, file){
  var l = 16, t = 16;
  var url="imgwin.html#"+file;
  var props = "toolbar=0,location=0,directories=0,status=off,menubar=0,scrollbars=0,resizable=0,copyhistory=0,";
		props += "width=" + width + ",height=" + height;
  if (window.screen && window.screen.availWidth) {
    l = Math.floor(((screen.availWidth - width)/2) + 5);
    t = Math.floor((screen.availHeight - height)/2);
    if (l < 0) l = 0;
    if (t < 0) t = 0;
    props += ",left=" + l + ",top=" + t;
  }
  aWinObj = window.open(url,'newWin', props);
}

function DraugiemSay( title, url, titlePrefix ) {
 window.open(
  'http://www.draugiem.lv/say/ext/add.php?title=' + encodeURIComponent( title ) +
  '&link=' + encodeURIComponent( url ) +
  ( titlePrefix ? '&titlePrefix=' + encodeURIComponent( titlePrefix ) : '' ),
  '',
  'location=1,status=1,scrollbars=0,resizable=0,width=530,height=400'
 );
 return false;
}
