function changeImage(img_name,img_src)
{
	document[img_name].src=img_src;
}
function changeImage2(img_name,img_src,width,height,lb_link_id)
{
	document[img_name].src=img_src;
	document.getElementById(lb_link_id).href=img_src;
	if(width>0){
		document[img_name].width=width;	
		}
	if(height>0){
		document[img_name].height=height;
		}
}

function popupImage(src, img_name)
{
    window.open(src+"&img="+document[img_name].src,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
}
