function getObj(oi) {
  if (document.getElementById)
  	return document.getElementById(oi);
  else if (document.all)
  	return document.all[oi];
  else if (document.layers)
  	return document.layers[oi];
}
function togVis (bi, vd, ca) {
  ca.blur();
  var b = getObj(bi);
  if (b.style.display == vd) {
  	b.style.display = 'none';
    return false;
  } else {
  	b.style.display = vd;
    return true;
	}
}
function fbs_click_ps(u, t) {
	window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
	return false;
}
function qlTog (ca, forceV) {
  var b = getObj('fql');
  var u = getObj('fqlun');
  var p = getObj('fqlpw');
  var isVis = false;
  if (b.style.display != 'block' || ! forceV)
  	isVis = togVis('fql', 'block', ca);
	if (isVis || forceV) {
		if (u.value == '')
			u.focus();
		else
			p.focus();
	}
	return false;
}