function ChangeWP (file, name) {

    $('#WPImage').attr('src', file);
    $('#WPName').html(name);

}
function ShowWP (top) {

	document.getElementById('WPDisplay').style.display = "inline";
    document.getElementById('WPDisplay').style.top = "75px";
	document.getElementById('WPDisplay').style.left = "20px";

}
function HideWP () {

	document.getElementById('WPDisplay').style.display = "none";

}