function addbookmark(){

	return confirm("Do you wish to add this topic to your bookmarks?");

}

function deletetopic(){

	return confirm("Are you sure you want to delete this topic?");

}

function deletebuddy(){

	return confirm("Are you sure you want to remove this person from your buddylist?");

}

function extrainfo(divname, img){


	if (document.getElementById(divname).style.display == 'none'){

		document.getElementById(divname).style.display = 'block';

		if (img != 0)
			img.src = "i/out.png";

	} else {

		document.getElementById(divname).style.display = 'none';
		if (img != 0)
			img.src = "i/in.png";

	}

}