function toggle() {
	var ele = document.getElementById("toggleText");
	var text = document.getElementById("displayText");
	
	if(ele.style.display == "block") {
    		ele.style.display = "none";
		text.innerHTML = "Change Image";
  	}
	else {
		ele.style.display = "block";
		text.innerHTML = "Change Image";
	}
} 

function confirmrem(uid)
{
	var action=confirm("Removing Profile Picture... Are you sure?");
	if(action)
	window.location='includes/image/remimg.php?uid='+uid;
}
