// Make external links open in new window
function applyPopups()
{
  if (document.getElementsByTagName) {
  a = document.getElementsByTagName("a");

  for(i=0; i<a.length; i++)
  {
    if(a[i].getAttribute("rel") && a[i].getAttribute("rel") == "external")
    {
		a[i].onclick = function()
		{
			window.open(this.getAttribute('href'));
			return false;
		}
    }
  }
  }
  else return false;
}

// Select fields on entry
function focusFields () {
// inputs
if (!document.getElementsByTagName) return false;
	var formfields = document.getElementsByTagName("input");
	for (var i=0; i < formfields.length; i++) {
		formfields[i].onfocus = function() {
			this.select();
		}
	}
	
// Textarea
if (!document.getElementsByTagName) return false;
	var formfields = document.getElementsByTagName("textarea");
	for (var i=0; i < formfields.length; i++) {
		formfields[i].onfocus = function() {
			this.select();
		}
	}

}