##########################################################################
## How to run collector selected script text
## 1. Select script text in collector from <script> to </script>. 
## 2. Click "Run Selected Script Text" button in collector.
## 3. If you want to run script in all page, press "Ctrl" key when click.
##########################################################################

==========================================================================
== Decrease Image Size to Fit Page Width
==========================================================================
<script language="JavaScript">
var AllImages = document.images;if (AllImages != null){	for (i=0; i < AllImages.length; i++) { if (AllImages[i].width > document.body.clientWidth * 0.96) 			AllImages[i].width = document.body.clientWidth * 0.96;	}}
</script>
