var openReview = null;

function addReview(id)
{
	var hdl = window.open("Review.php?id=" + id, "", "width=520, height=550, top=100, left=100, scrollbars=yes");
	hdl.focus();
}

function ReadReview(id)
{
	if (openReview != null)
		openReview.className = "ReviewContainerInvisible";
	
	
	var div = document.getElementById("Review_" + id);
	if (div == openReview) {
		openReview = null;
		return;
	}
	
	openReview = div;	
	openReview.className = "ReviewContainerVisible";
}