function showPic(name){	
	oDivPhoto = getObj ('photoWin');
	oPic = getObj ('photo');
	oPic.src = name;
	oDivPhoto.style.display = 'block';
}

function hidePic(){
	oDivPhoto = getObj ('photoWin');
	oPic = getObj ('photo');
	oPic.src = 'images/spacer.gif';
	oDivPhoto.style.display = 'none';
}