function setPic(link_href, PlaceID, thumbNail,imageWidth,imageHeight) {
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(PlaceID).src = link_href;
		document.getElementById(PlaceID).width = imageWidth;
		document.getElementById(PlaceID).height = imageHeight;
		document.getElementById('imagePlace').style.width = imageWidth + 'px';
	}
	else { 
		if (document.layers) { // Netscape 4
		
			document.layers[PlaceID].src = link_href;
			document.layers[PlaceID].width = imageWidth;
			document.layers[PlaceID].height = imageHeight;
			document.layers['imagePlace'].style.width = imageWidth + 'px';
		} 
		else { // IE 4 
			document.all.layers[PlaceID].src = link_href;
			document.all.layers[PlaceID].width = imageWidth;
			document.all.layers[PlaceID].height = imageHeight;
			document.all.layers['imagePlace'].style.width = imageWidth + 'px';
		}
	}
}