// $Id: elementpopup.js,v 1.2 2006/01/27 17:24:58 chrisgraham Exp $

function showPopup(id)
{
	document.getElementById(id).style.display = "block";
}

function closePopup(id)
{
	document.getElementById(id).style.display = "none";
}

// $Log: elementpopup.js,v $
// Revision 1.2  2006/01/27 17:24:58  chrisgraham
// Removed dollar signs from variables, javascript doesn't need them
//
// Revision 1.1  2006/01/18 08:29:52  aaronpollock
// First check in of script
//