function comfirmpostdel () {
var agree=confirm("Are you sure you want to delete this post?");
if (agree)
	return true ;
else
	return false ;
}
function comfirmthreaddel () {
var agree=confirm("Are you sure you want to delete this thread and all it's posts?");
if (agree)
	return true ;
else
	return false ;
}
