<!--
  function doClear(theText) {
  if (theText.value == theText.defaultValue) {
  theText.value = ""
  }

function sendContact() {
	// CHECK THE USER HAS ENTERED A NAME
	if ((document.contact.realname.value == "") || (document.contact.realname.value == " ")) {
		alert("Please enter your name.");
		return;
	}
	if ((document.contact.email.value == "") || (document.contact.email.value == " ")) {
		alert("Please enter a valid email address.");
		return;
	}
	document.contact.submit();
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function ELWindow(){
win = window.open('', 'ELWindow', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=400,height=300')
win.document.write("<HTML><HEAD><TITLE>Electric Library</TITLE>")
win.document.write("<STYLE>")
win.document.write("<!--")
win.document.write("BODY {font-family: Arial, Helvetica, sans-serif;}")
win.document.write(" -->")
win.document.write("</STYLE></HEAD><BODY>")
win.document.write("&nbsp;<BR>")
win.document.write("<B>Electric Library</B> is a researcher's delight - a digital archive containing the full text of literally millions of articles from hundreds and hundreds of publications:")
win.document.write("<UL><LI>Current news wires<LI>Newspaper archives<LI>Back issues of hundreds of magazines<LI>Books, maps and photographs<LI>Transcripts of television & radio programs<LI>Fine art images (mostly from Archive Photos TM)</UL>")
win.document.write("In order to see the full text of articles you will need to sign up for a <B>30-day FREE trial</B>.<BR>&nbsp;")
win.document.write("</BODY></HTML>")

var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','location=no,height=600,width=600,left=150,top=150,scrollbars=yes,resizable=yes');
	if (window.focus) {newwindow.focus()}
}
