function toggleDisplay(divID)
{
        theDiv = document.getElementById("hiddenDiv" + divID);
        var current = theDiv.style.display;
        if(current == 'none'){
            theDiv.style.display = "inline";
        }
        if(current == 'inline'){
            theDiv.style.display = "none";
        }      
}

function onEnterKeyFast(o, e) 
{
	if ((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13)) {
		e.cancelBubble = true
		e.returnValue = false
		o.click()
		return false
	} 
	else
		return true
}	