function toggleAll(itemname,state){
    tmp = document.getElementsByTagName('div');
    for (i=0;i<tmp.length;i++){
        if (tmp[i].className == itemname) tmp[i].style.display = state;
    }
}
function toggle(idname){
    document.getElementById(idname).style.display = (document.getElementById(idname).style.display == 'none') ? 'block' : 'none';
}function KeepCount() {
	var NewCount = 0
	if (document.softtelquote.OfficeDirectory.checked)
		{NewCount = NewCount + 1}
	if (document.softtelquote.MeetMeConferencing.checked)
		{NewCount = NewCount + 1}
	if (document.softtelquote.MusicOnHold.checked)
		{NewCount = NewCount + 1}
	if (document.softtelquote.MessageWaiting.checked)
		{NewCount = NewCount + 1}
	if (NewCount == 3)
{
document.softtelquote; return false;
}
}
