// JScript source code

// test to see if the browser will handle the code:
//agent = navigator.userAgent
//browserVer = 2
browserVer = 1


function flipFlop1(imgDocID,imgSrc) {
//   imgDocID - which piece of the page code is calling this routine
//   imgSrc - name of the image which replaces the default

	if (browserVer == 1)
	{
	kq1 = new Image(32,32);
	kq1.src = imgSrc;
		document.images[imgDocID].src = eval("kq1" + ".src")

	}

}
