<!--

function openWin(imgName,imgWidth,imgHeight){
var winTitle='Olsens Grain Chino Valley';
var winBg='white';
var winProps='height='+imgHeight+', width='+imgWidth+'';

var newWin=window.open('', '', 'width=770,height=1000,scrollbars=yes,left="10",top="10"');
newWin.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>'+winTitle+'</title></head>');
newWin.document.write('<body bgColor="'+winBg+'"><img src="'+imgName+'" border=0><input type="button" value="Close Window" onClick="window.close()"></body></html>');
newWin.document.close();
}


//-->


