function changePicture(myButton, newImg)

{

	myButton.src = ""+newImg;

}


function showPopup()
{
	//alert("Here"); 
	var myPopup = document.getElementById('paidInfoPopup'); 
	var myPopupContainer = document.getElementById('popup_container');
	myPopup.style.display = 'block';
	myPopupContainer.style.display = 'block';
	logEvent("Clicked on 'Paid Reviews' button.  Showing popup...");
}

function hidePopup()
{
	var myPopup = document.getElementById('paidInfoPopup'); 
	var myPopupContainer = document.getElementById('popup_container');
	myPopup.style.display = 'none';
	myPopupContainer.style.display = 'none';
	logEvent("Closed 'Paid Reviews' popup");
}
