//<!--
// Change the main img on a page by calling this function
// for B&Q: ensure the 'image' var contains the $proptitle & '/' php  
function imgChange(image,imgid) {
	var newImg =image;
//	alert("image = "+image+"\nimgid = "+imgid+"\nnewImg = "+newImg);
	if(document.images) {
		document.images[imgid].src = newImg;
	}
/*	if(document.getElementById) {
		var imgs = document.getElementsByTagName ("img");
		for (i=0;i<imgs.length;i++) {
			var img = imgs[i];
			if (img.getAttribute("id") == imgid) {img.src = newImg; }
		}
	//	document.getElementById("imgid").src = newImg;
	}*/
}
//-->

function txtChange(txt,divid) {
  var newTxt = txt;
  if (document.getElementById) {
    document.getElementById(divid).innerHTML = newTxt;
  }
}
