//********************************************************************
// Use this script for Thawte verification
//********************************************************************
<!--
function OpenCertDetails()
	{
	thewindow = window.open('https://www.thawte.com/cgi/server/certdetails.exe?code=USLEEU1', 'anew', config='height=400,width=500,toolbar=no,menubar=no,scrollbars=yes,resizable=no,location=no,directories=no,status=yes');
	}
// -->

//********************************************************************
// Use this script to focus on field
// VARS : 1. Current Field  2. Max Characters  3. To Field
//********************************************************************
function AutoTab(cur_field, char_max, goto_field)
{
	if (is_nav4)
	{
		if (cur_field.value.length >= char_max)
		{
			goto_field.focus();
		}
	}
	if (is_ie4up || is_nav5up)
	{	// Offset fixed in Nav 6
		if (cur_field.value.length > (char_max-1))
		{
			goto_field.focus();
		}
	}
}
// -->

//********************************************************************
// Use this script wherever a new Window is open
// VARS : 1. Window Name  2. Window Width  3. Window Height
//********************************************************************
function WindowOpen(name, width, height) 
  {
msg=open(name,"DisplayWindow","resizable=no,toolbar=no,scrollbars=yes,width="+width+",height="+height+",menubar=yes"); 
  }

//********************************************************************
<!-- Begin Make Lee Homepage
//********************************************************************
function homewin()
 {
   window.open("http://www.leeuniversity.edu/misc/lee_as_homepage.htm","","height=150,width=380,left=0,top=0");
 }

// End Make Lee Homepage -->
//********************************************************************
<!-- Begin Goto Form named findit
//********************************************************************
function findit(form)
  {
   var index = form.frame1.selectedIndex;
   var url;

   if (index >= 0) 
     {
      var prename = form.frame1.options[index].value;
      location = "http://www.leeuniversity.edu" + prename;
     }
  } 
// End Goto Form -->

//********************************************************************
<!--- Calendar popup script to be used to automatically fill in the field where a date or time is needed
//********************************************************************
function CalPop(sInputName)
{
	window.open('/scripting/cal-popup/Calendar.asp?N=' + escape(sInputName) + '&DT=' + escape(window.eval(sInputName).value), 'CalPop', 'toolbar=0,width=378,height=225');
}
// End Caledar Popup --->