
function setImageDimensions(gotImage)
{
  if(gotImage.width > 600) {
	gotImage.width = 600;
  }
}
function changeImageDimensions(gotImage, type)
{
  if(gotImage.width > 600 && type == 'out') {
	gotImage.width = 600;
    return;
  }
  if(type == 'over') {
	gotImage.removeAttribute('width');
  }
}
