// JavaScript Document
// Copyright 2005 by Blue Link Webs; non-exclusive license to Georgia Higher Education Alliance
String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g, ""); };

function calWindow (x) {
params='toolbar=no,location=no,directories=no,status=no,menubar=no';
params=params+',scrollbars=yes,resizable=yes,width=700,height=450';
params=params+',screenX=25,left=25,screenY=25,top=25';
cal_window=window.open(x,'calendar',params);
//cal_window.moveTo(25,25);
cal_window.focus();
return false;
}

function helpWindow (x) {
  ext='.html';
  l=x.length;
  if (x.substr(l-4,4) == '.php') ext='';
  y="/help/"+x+ext;
  params='toolbar=no,location=no,directories=no,status=no,menubar=no,';
  params=params+'scrollbars=yes,resizable=yes,width=450,height=300';
  help_window=window.open(y,'help',params);
  help_window.focus();
}

function gem2701(node, domain, local) {
  var mt="mailto:uce@ftc.gov";
  var at=mt.substring(10,11);
  mt=mt.substring(0,7);
  var address = mt + local + at + domain;
  node.href = address ;
  return true;
}