//////Displays POPUPS/////


///////////////////////////// displays popup ////////////////////////////////
function showPopup(firstDiv, secondDiv){ 

	var firstDivName = document.getElementById(firstDiv);
	var secondDivName = document.getElementById(secondDiv); 

	//if the first div is found display it
	if(firstDivName.value != ""){
		if (firstDivName.style.display == "none"){ 
			firstDivName.style.display = ""; 
		}
	}
	
	//if the second div is found display it
	if(secondDivName.value != ""){
		if (secondDivName.style.display == "none"){ 
			secondDivName.style.display = ""; 
		}
	}
}


///////////////////////////// hides popup ////////////////////////////////
function hidePopup(firstDiv, secondDiv){ 

	var firstDivName = document.getElementById(firstDiv);
	var secondDivName = document.getElementById(secondDiv); 

	//if the first div is found hide it
	if(firstDivName.value != ""){
		if (firstDivName.style.display == ""){ 
			firstDivName.style.display = "none"; 
		}
	}
	
	//if the second div is found hide it
	if(secondDivName.value != ""){
		if (secondDivName.style.display == ""){ 
			secondDivName.style.display = "none"; 
		}
	}
}
