function checkUncheckAll(theElement) {
	var theForm = theElement.form, z = 0;
	for(z=0; z<theForm.length;z++){
		if(theForm[z].type == 'checkbox' && theForm[z].name != 'checkall'){
			theForm[z].checked = theElement.checked;
		}
	}
}
function togglediv(postid) {
	//get the div we want to hide or show
	var whichdiv=document.getElementById('replies'+postid);
	var whichimg=document.getElementById('img'+postid);
	// if its on, make it off, if its off, make it on
	if (whichdiv.className=='divshown') {
		whichdiv.className='divhidden';
		whichimg.src='/images/arr_blk_right.gif';
	} else {
		whichdiv.className='divshown';
		whichimg.src='/images/arr_blk_down9x9.gif';
	}
}
function MM_jumpMenu(targ,selObj,restore){ //v3.0
	eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}