function mOver(e){
		e.style.borderColor = "2965A2";
		e.style.backgroundColor = "CCE1F6";
}
	
function mOut(e){
		e.style.borderColor = "D2E2F2";
		e.style.backgroundColor = "D2E2F2";
}
	
function mClick(e){
		document.location = "post.aspx?" + e.toString();
}
	
function hide(e, arrow)
{
		if(e.style.display=='none'){
			e.style.display = 'inline';
			arrow.src = '/images/arrow.gif';
		}
		else{
			e.style.display = 'none';
			arrow.src = '/images/arrow2.gif';
		}
}

function hide2(e){
		if(e.style.display=='none'){
			e.style.display = 'inline';
		}
		else{
			e.style.display = 'none';
		}
}