function ShowPicture(id,Source) {
if (Source=="1"){
if (document.getElementById) document.getElementById(''+id+'').style.visibility = "visible";
}
else
if (Source=="0"){
if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden";
}
}
