function imagezoom(pic, width, heigth){
var picName="/images/photo/" + pic;
width = width+20;
heigth = heigth + 20;
window.open(picName,'zoomWin','width='+width+',height='+heigth+',left=200,top=200,toolbar=no,location=no,status=0,menubar=0,scrollbars=0,resizable=no');
}

function changeImg(imgSrc,imgDesc,imgWidth,imgHeight,linkUrl,bigWidth,bigHeight){
	document.images['mainimg'].src='/css/images/e11.gif';
	document.images['mainimg'].width=imgWidth;
	document.images['mainimg'].height=imgHeight;
	document.images['mainimg'].src=imgSrc;
	imgTextDiv=document.getElementById('imgtext');
	//imgTextDiv.innerText=imgDesc;
	imgTextDiv.innerHTML=imgDesc;
	imgBigLink=document.getElementById('imglink');
	imgBigLink.href='javascript:imagezoom(\''+linkUrl+'\','+bigWidth+','+bigHeight+');';
}
