
function ShowProfilePic(url, width) {
	//alert (url + ' ' + width);
	document.getElementById("ProfilePicture").src = url;
	document.getElementById("ProfilePictureLink").style.width = width + "px";
	document.getElementById("ProfilePictureLinkB").style.width = (width + 20) + "px";
	document.getElementById("ProfilePictureLinkA").style.width = (width + 22) + "px";
}