function ini()
{
	oDivPhoto = getObj ('photoWin');
	oPic = getObj ('photo');
}

function ShowPic(name){
	oPic.src = 'userfiles/'+name;
	oDivPhoto.style.display = 'block'; 
}

function HidePic(){
	oPic.src = 'images/spacer.gif';
	oDivPhoto.style.display = 'none';
}


