function imageWindow(imageName,imageWidth,imageHeight,imgTitle){

carWin = open("",imageName,"width=" + imageWidth + ",height=" + imageHeight + ",top=15,left=15");
	with(carWin.document){
	open();
	write("<html>");
	write("<head>");
	write("<title>");
	write(imgTitle);
	write("</title>");
	write("</head>");
	write("<body topmargin='0' leftmargin='0'>");
	write("<a href=javascript:window.close();>");
	write("<img src=../cars/" + imageName + ".jpg width=" + imageWidth + " height=" + imageHeight + " border='0'>");
	write("</a>");
	write("</body>");
	write("</html>");
	close();
	}

}