//<!--
function ScaleImageInElement(DIVID, ImageID, NewWidth, NewHeight)
	{
//		var el;
//		el = document.getElementById(DIVID);
//		if ( el )
//			{
//				var images;
//				images = el.getElementsByTagName('img');
//				if ( images )
//					{
//						for ( i = 0; i < images.length; i++ )
//							{
//								if ( images[i] && i == ImageID )
//									{
//										if ( NewWidth )
//											{
//												images[i].style.width = NewWidth+'px';
//												images[i].style.height = 'auto';
//											}
//										if ( NewHeight && images[i].height > NewHeight )
//											{
//												images[i].style.height = NewHeight+'px';
//												images[i].style.width = 'auto';
//											}
//									}
//							}
//					}
//			}
	}
-->