/* showHide taken from here: http://www.psychodaisy.com/index.php/blog/comments/948 */
function showHide(entryID, entryLink, htmlObj, type)
{
	if (type == "comments")
	{
		extTextDivID = ('comText' + (entryID));
		extLinkDivID = ('comLink' + (entryID));
	}
	else
	{
		extTextDivID = ('extText' + (entryID));
		extLinkDivID = ('extLink' + (entryID));
	}

	if( document.getElementById )
	{
		if( document.getElementById(extTextDivID).style.display )
		{
			if( entryLink != 0 )
			{
				document.getElementById(extTextDivID).style.display = "block";
				document.getElementById(extLinkDivID).style.display = "none";
				htmlObj.blur();
			}
			else
			{ 
				document.getElementById(extTextDivID).style.display = "none";
				document.getElementById(extLinkDivID).style.display = "block";
			}
		}
		else
		{
			location.href = entryLink;
			return true;
		}
	}
	else
	{
		location.href = entryLink;
		return true;
	}
}

function OpenContactForm(c)
{
	window.open(c,
		    'contact',
		    'width=600,height=600,scrollbars=yes,status=yes');
}

function OpenPrintable(url)
{
	window.open(url,
		    'cert_printable',
		    'width=600,height=600,scrollbars=yes,status=yes,menubar=yes,toolbar=yes');
}
/* end of file */
