home1 = new Image();
home1.src = "images/home/nav1_blue.gif";

home2 = new Image();
home2.src = "images/home/nav2_blue.gif";

home3 = new Image();
home3.src = "images/home/nav3_blue.gif";

home4 = new Image();
home4.src = "images/home/nav4_blue.gif";

image1 = new Image();
image1.src = "images/constants/nav1_blue.gif";

image2 = new Image();
image2.src = "images/constants/nav2_blue.gif";

image3 = new Image();
image3.src = "images/constants/nav3_blue.gif";

image4 = new Image();
image4.src = "images/constants/nav4_blue.gif";

image5 = new Image();
image5.src = "images/constants/nav5_blue.gif";

function PopUpGlossary()
{
	var search = window.document.form1.search.value;
	if(search!= "")
	{
		GlossaryWindow = window.open
		("glossary.asp?action=submit&search="+search, "Glossary", 'width=350,height=350 resizable=no');
		GlossaryWindow.focus()
	}
	else
	{
		GlossaryWindow = window.open
		("glossary.asp?action=submit", "Glossary", 'width=350,height=350 resizable=no');
		GlossaryWindow.focus()
	}
}

function popUpWord(wordSearch)
{
	if ((window.GlossaryWindow == null) || (window.GlossaryWindow.closed))
	{
		GlossaryWindow = window.open
		("glossary.asp?action=submit&search="+wordSearch, "Glossary", 'width=350,height=350 resizable=no');
		GlossaryWindow.focus();
	}	
	else 
	{
		GlossaryWindow.close();
		GlossaryWindow = window.open
		("glossary.asp?action=submit&search="+wordSearch, "Glossary", 'width=350,height=350 resizable=no');
		GlossaryWindow.focus();
	}
}