var selectedImage = 0;

function setDetailImage(id,genericId,index){
	enclosingDiv = document.getElementById(genericId);
	enclosingDiv.style.display='block';
	var params =window.images[index].split(';');
	
	targetImg = document.getElementById(id+genericId);
	targetImg.src = '';
	//targetImg.width = params[1];
	//targetImg.height = params[2];
	targetImg.src = params[0];
	imganchor = '#obr'+params[3];
	
	
	window.selectedImage = index;
	//window.location = imganchor;
	
}
