<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
var theImagesDesc = new Array() // do not change this
var theImagesPath = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = '../images/products/PMM9010_s.jpg'
theImagesDesc[0] = 'PMM 9010 EMC/EMI Receiver 10Hz - 30MHz'
theImagesPath[0] = '../narda/9010.asp'
theImages[1] = '../images/products/9030_s1.jpg'
theImagesDesc[1] = 'PMM 9030 EMC/EMI Receiver 30MHz - 3GHz'
theImagesPath[1] = '../narda/9010.asp'
theImages[2] = '../images/products/PMM3030_s.jpg'
theImagesDesc[2] = 'PMM 3030 wideband RF Signal Generator 10kHz - 3GHz'
theImagesPath[2] = '../narda/news_en.asp#3030'
theImages[3] = '../images/products/6630_s.jpg'
theImagesDesc[3] = 'PMM 6630 USB RF Power Sensor 9kHz - 3GHz'
theImagesPath[3] = '../narda/news_en.asp#6630'
theImages[4] = '../images/products/9060_s2.jpg'
theImagesDesc[4] = 'PMM 9060 EMC/EMI Receiver 30MHz - 6GHz'
theImagesPath[4] = '../narda/news_en.asp#9060'
theImages[5] = '../images/products/Click4E-Frontale_s.jpg'
theImagesDesc[5] = 'PMM Click 4E - Click disturbances Analyzer'
theImagesPath[5] = '../narda/news_en.asp#click'
theImages[6] = '../images/products/9010ES_s.jpg'
theImagesDesc[6] = 'PMM 9010 Emission Suite Software'
theImagesPath[6] = '../narda/news_en.asp#9010ES'
theImages[7] = '../images/products/EP600_s.jpg'
theImagesDesc[7] = 'PMM EP-600 Active field probe'
theImagesPath[7] = '../narda/news_en.asp#EP600'
theImages[8] = '../images/products/9010_30_ss.gif'
theImagesDesc[8] = 'PMM 9010/30P EMC/EMI Receiver 10Hz - 30MHz'
theImagesPath[8] = '../narda/news_en.asp#1030P'

// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<table border="0" cellspacing="10" cellpadding="0" bgcolor="white"><tr><td align="center">'); 
document.write('<a href="'+theImagesPath[whichImage]+'">');
document.write('<img src="'+theImages[whichImage]+'" border="0" title="'+theImagesDesc[whichImage]+'"></a><br />');
document.write(theImagesDesc[whichImage]);
document.write("</td></tr></table>");
}

//  End -->

