function goCreateAnchor(objImage)
{
	var anchor1 = document.getElementById('tempa');
	var imagesrc = objImage.src.replace('_cmsthumbclick','');
	anchor1.setAttribute('href',imagesrc);
	anchor1.setAttribute('rel','contentimage');	
	anchor1.setAttribute('title',objImage.alt);	
	myLightbox.start(anchor1); 
	return false;	
}


