<!-- 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/cond-is_s1.jpg'
theImagesDesc[1] = 'PMM Cond-IS RF Conducted Immunity System'
theImagesPath[1] = '../narda/news_en.asp#PIMS'
theImages[2] = '../images/products/EHP50D_s.jpg'
theImagesDesc[2] = 'PMM EHP-50D Electric and Magnetic field Analyzer'
theImagesPath[2] = '../narda/news_en.asp#EHP50D'
theImages[3] = '../images/products/9060_s2.jpg'
theImagesDesc[3] = 'PMM 9180 EMC/EMI Receiver 6GHz - 18GHz'
theImagesPath[3] = '../narda/news_en.asp#9180'
theImages[4] = '../images/products/9010ES_s.jpg'
theImagesDesc[4] = 'PMM 9010 Emission Suite Software'
theImagesPath[4] = '../narda/news_en.asp#9010ES'
theImages[5] = '../images/products/9010_30_ss.gif'
theImagesDesc[5] = 'PMM 9010/30P EMC/EMI Receiver 10Hz - 30MHz'
theImagesPath[5] = '../narda/news_en.asp#1030P'
theImages[6] = '../images/products/L1-150M_ss.jpg'
theImagesDesc[6] = 'PMM L1-150M Multi Standard LISN'
theImagesPath[6] = '../narda/news_en.asp#L1-150M'
theImages[7] = '../images/products/amb8057_s.jpg'
theImagesDesc[7] = 'AMB-8057 Area Monitor'
theImagesPath[7] = 'http://www.narda-sts.de/products/area-monitor/meters/amb-8057.html'

// 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 -->


