function showPic (url, id) {
	if (document.getElementById) {
		document.getElementById(id).src = url;
		return false;
	}
	else {
		return true;
	}
}