// JavaScript Document
<!--

	var mainPopup;
	
	function loadPopup()
	{
		mainPopup = window.open("","popup","scrollable,resizable,height=800,width=800");
	}
	
	
	function loadSlidePopup()
	{
		loadPopup();
		mainPopup.location.href = "slideshow.html";
		mainPopup.focus();
	}
	
	function loadLinkPopup()
	{
		loadPopup();
		mainPopup.location.href = "links.html";
		mainPopup.focus();
	}
	
	function loadInfoPopup()
	{
		loadPopup();
		mainPopup.location.href = "info.html";
		mainPopup.focus();
		
	}
	
	function setVisible()
	{
		document.getElementById("servicePrev").style.visibility = "visible";
		document.getElementById("educationPrev").style.visibility = "visible";
		document.getElementById("lookingPrev").style.visibility = "visible";
	}
	
	function showEdText()
	{
		if(document.getElementById("educationPrev").style.visibility == "visible")
		{
			document.getElementById("educationPrev").style.visibility = "hidden";
			document.getElementById("educationPrev").style.position = "absolute";
			document.getElementById("educationPrev").style.top = "0px";
			document.getElementById("educationPrev").style.left = "0px";
			document.getElementById("educationText").style.position ="relative";
			document.getElementById("educationText").style.top = "0px";
			document.getElementById("educationText").style.visibility = "visible";
		}
		else
		{
			
			document.getElementById("educationText").style.visibility = "hidden";
			document.getElementById("educationText").style.position = "absolute";
			document.getElementById("educationText").style.top = "0px";
			document.getElementById("educationText").style.left = "0px";
			document.getElementById("educationPrev").style.position ="relative";
			document.getElementById("educationPrev").style.top = "0px";
			document.getElementById("educationPrev").style.visibility = "visible";
		}
	}
	
	
	function showServText()
	{
		if(document.getElementById("servicePrev").style.visibility == "visible")
		{
			document.getElementById("servicePrev").style.visibility = "hidden";
			document.getElementById("servicePrev").style.position = "absolute";
			document.getElementById("servicePrev").style.top = "0px";
			document.getElementById("servicePrev").style.left = "0px";
			document.getElementById("serviceText").style.position ="relative";
			document.getElementById("serviceText").style.top = "0px";
			document.getElementById("serviceText").style.visibility = "visible";
		}
		else
		{
			
			document.getElementById("serviceText").style.visibility = "hidden";
			document.getElementById("serviceText").style.position = "absolute";
			document.getElementById("serviceText").style.top = "0px";
			document.getElementById("serviceText").style.left = "0px";
			document.getElementById("servicePrev").style.position ="relative";
			document.getElementById("servicePrev").style.top = "0px";
			document.getElementById("servicePrev").style.visibility = "visible";
		}
		servCount++;
	}
	
	function showLookText()
	{
		if(document.getElementById("lookingPrev").style.visibility == "visible")
		{
			document.getElementById("lookingPrev").style.visibility = "hidden";
			document.getElementById("lookingPrev").style.position = "absolute";
			document.getElementById("lookingPrev").style.top = "0px";
			document.getElementById("lookingPrev").style.left = "0px";
			document.getElementById("lookingText").style.position ="relative";
			document.getElementById("lookingText").style.top = "0px";
			document.getElementById("lookingText").style.visibility = "visible";
		}
		else
		{
			
			document.getElementById("lookingText").style.visibility = "hidden";
			document.getElementById("lookingText").style.position = "absolute";
			document.getElementById("lookingText").style.top = "0px";
			document.getElementById("lookingText").style.left = "0px";
			document.getElementById("lookingPrev").style.position ="relative";
			document.getElementById("lookingPrev").style.top = "0px";
			document.getElementById("lookingPrev").style.visibility = "visible";
		}
	}
// -->