//copyright 2006 Nick Pettazzoni and Scott Bacon: WarrantyNowVoid.com


function showcomments(postid){
	if(document.getElementById(postid).style.display != 'block'){
		document.getElementById(postid).style.display = 'block';
	}else{
		document.getElementById(postid).style.display = 'none';
	}
}
function showcommentform(thing){
	if(document.getElementById(thing).style.display != 'block'){
		document.getElementById(thing).style.display = 'block';
	}else{
		document.getElementById(thing).style.display = 'none';
	}
}
function envis(what){
	document.getElementById(what).style.visibility = 'visible';
}

function devis(what){
	document.getElementById(what).style.visibility = 'hidden';
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
