// #############################################################################
//
// Veedub forum javascript
//
// #############################################################################

function goMail(uid) {
  var t=480, l=340;
  var popW = 380, popH = 310;

  if(document.all || document.layers) {
   l = screen.availWidth;
   t = screen.availHeight;
  }
  leftPos = (l-popW)/2;
  topPos  = (t-popH)/2;

  window.open('mailto.php?mid='+uid,'Mailto',"width=" + popW + ",height=" + popH + ",top=" + topPos + ",left=" + leftPos);
}

function goMsn(uid) {
  var t=480, l=340;
  var popW = 380, popH = 150;

  if(document.all || document.layers) {
   l = screen.availWidth;
   t = screen.availHeight;
  }
  leftPos = (l-popW)/2;
  topPos  = (t-popH)/2;

  window.open('addmsn.php?id='+uid,'AddContact',"width=" + popW + ",height=" + popH + ",top=" + topPos + ",left=" + leftPos);
}


function getActiveText()
{
	setfocus();
	if (!is_ie || (is_ie && !document.selection))
	{
		return false;
	}

	var sel = document.selection;
	var rng = sel.createRange();
	rng.colapse;
	if (rng != null && (sel.type == "Text" || sel.type == "None"))
	{
		text = rng.text;
	}
	if (theform.message.createTextRange)
	{
		theform.message.caretPos = rng.duplicate();
	}
	return true;
}

