

function people_show_image(NewImage) {
	document["peopleImg"].src = NewImage.src;
}





function people_default_image() {
	x = GROUP_IMAGE.length;
		
	if (x == 0) {
		x = NoPhoto.length;
		y = Math.floor(x*Math.random());
		document["peopleImg"].src = NoPhoto[y].src	;		
	}
	
	else {
		y = Math.floor(x*Math.random());
		document["peopleImg"].src = GROUP_IMAGE[y].src	;
	}

}



function people_show_image2( SomeName ) {

	x = SomeName.length;
		
		
	if (x == 0) {
		x = NoPhoto.length;
		y = Math.floor(x*Math.random());
		document["peopleImg"].src = NoPhoto[y].src	;		
	}
	
	else {
		y = Math.floor(x*Math.random());
		document["peopleImg"].src = SomeName[y].src	;
	}

	
}

