﻿function neipics(x) {
var picture = document.getElementById('picture');
	if ( picture.width > x ) {
		picture.width = x;
	}
}
