<img src="../../images/info.png" style="width:15px;" />
											</a>
											<div id="jpgcompressioninfodialog">
												JPG quality refers to amount of compression applied. 
												Value should be numeric and range from 0 (worst quality, smaller file) to 
												100 (best quality, biggest file). 
												If null, 75 is used as the default. 
											</div>
										</div>
									</div>
									<div id="thumbnailrow" style="clear:both;">
										<div>
											<b>Thumbnail:</b>
											<div style="margin:5px 15px;">
												<input name="createtnimg" type="radio" value="1" <?php 
            echo $specManager->getCreateTnImg() == 1 ? 'CHECKED' : '';
            ?>
 /> Create new thumbnail from source image<br/>
												<input name="createtnimg" type="radio" value="2" <?php 
            echo $specManager->getCreateTnImg() == 2 ? 'CHECKED' : '';
            ?>
 /> Import thumbnail from source location (source name with _tn.jpg suffix)<br/>
												<input name="createtnimg" type="radio" value="3" <?php 
            echo $specManager->getCreateTnImg() == 3 ? 'CHECKED' : '';
            ?>
 /> Map to thumbnail at source location (source name with _tn.jpg suffix)<br/>
												<input name="createtnimg" type="radio" value="0" <?php 
            echo !$specManager->getCreateTnImg() ? 'CHECKED' : '';
            ?>
 /> Exclude thumbnail <br/>
											</div>