/*--------------------------------------------------|
| MinMax 1.04 | www.tacktech.com                    |
|---------------------------------------------------|
| Copyright (c) 2002-2006 TACKtech Corp.            |
|                                                   |
| This script can be used freely as long as all     |
| copyright messages are intact.                    |
|                                                   |
| Updated: 11/19/2006                               |
|--------------------------------------------------*/

function Toggle(secid,objId) {
	var sectionId = document.getElementById(secid);
	if (sectionId == null) return;
	sectionId.style.display = (sectionId.style.display != 'none' ? 'none' : '' );
	var classtoswap = document.getElementById(objId);
	if (objId == null) return;
	classtoswap.className = (classtoswap.className != 'minbox' ? 'minbox' : 'maxbox' );
};

function Hide( obj )
{
	var oDiv = document.getElementById(obj);
	if(oDiv != null) oDiv.style.display = "none";
};