function SetPicture( src , w, h )
		{
			image = document.getElementById( "MainPict" );
			image.src = src;
			image.style.width = w;
			image.style.height = h;	
			image.width = w;
			image.height = h;	
		}
