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