// JavaScript Document

window.onerror = new Function('return true');

function getRandomImgSrc() {
	var imgSrcRandom = new Array(
		'images/mainpagepics/DDfront2.jpg',
		'images/mainpagepics/DDfront3.jpg',
		'images/mainpagepics/DDfront4.jpg',
		'images/mainpagepics/DDfront5.jpg',
		'images/mainpagepics/DDfront6.jpg',		
		'images/mainpagepics/DDfront7.jpg',		
		'images/mainpagepics/DDfront8.jpg',		
		'images/mainpagepics/DDfront9.jpg',
		'images/mainpagepics/DDfront10.jpg'	
	);
	var intRandom;
	while (isNaN(intRandom)) {
		intRandom = Math.round(imgSrcRandom.length * Math.random()) % imgSrcRandom.length;
	}
	return imgSrcRandom[intRandom];
}//getRandomImgSrc
imgSrcRandomLeft = getRandomImgSrc();

function writeImg(imgSrc, intWidth, intHeight, strAlt) {
	document.writeln('<img src="' + imgSrcRandomLeft + '"'
		+ ' width="' + intWidth + '"'
		+ ' height="' + intHeight + '"'
		+ ' alt="' + strAlt + '"'
		+ ' border="0" />');
}









//writeImg

