// JavaScript Document
function infow(ndx){
	var brand = new Array("FS 650", "KH 500-31A", "Katumani", "H511");
	var caption = new Array(4);
	caption[0] = "The flagship of Faida Seeds, this product is the work of our research department. A late maturing variety that does 		well in highland areas of altitude 1700 - 2200 m above sea level. The variety has good resistance to maize streak virus, rust & blight. Matures in 150-190 days. Its drooping cob reduces the risk of rotting and bird damage. It has a good husk cover and is excellent for roasting. Yields of 45 bags per acre (9-10 MT per Ha) have been realized.";
	caption[1] = "The variety is adapted to medium altitudes of Kenya between 1000 - 1800m above sea level. The variety is highly resistant to maize streak virus, leaf rust and leaf blight. It matures in 120-150 days and has large attractive cobs that are sweet for roasting. It has excellent tolerance to drought, has strong roots and does not lodge easily. Yields of 35 bags per acre (3.2 MT) have been realized."
	caption[2] = "This is an open pollinated variety bred for the arid and semi-arid areas of Kenya. It is early maturing and has low rainfall requirements. It is adopted to marginal areas of Kenya within 900-1350m above sea level. It matures in 90 to 120 days (3-4 months) and yields upto 21 bags per acre (3-5 MT)."
	caption[3] = "This variety is suitable to medium altitudes and low rainfall areas of Kenya of between 1000 - 1800m above sea level. It matures in 4-5 months and yields upto 28 bags per acre (1.6 MT).";
	
	var out = "<html><head><title>Faida Seeds</title><link rel='stylesheet' href='faida.css'";
	out += "</head><body>";
	out += '<table width="563" border="0" align="center" cellpadding="2" cellspacing="0" class="menu">';
	out += '<tr><td width="150" height="100" background="pix/info-w' + ndx + '.jpg">&nbsp;</td>';
	out += '<td width="405" valign="top"><h3>Product Information Window</h3>';
	
	if(brand[ndx] == null){
		brand[ndx] = 'Faida Seeds &reg; Variety';
	}
	
	out += '<h4>' + brand[ndx] + '</h4>';
	
	if(caption[ndx] != null){
		out += "<p style='font-size:12px'>" + caption[ndx] + "</p>";
	}
	out += "<div align='right'><input type='button' value='Close Window' onClick='javascript:window.close()'></div><p>";
	out += "</td></tr></table></body></html>";
	
	windowprops = "height=250,width=600,location=no," + "scrollbars=no,menubars=no,toolbars=no,resizable=yes";
	pixWindow = window.open('', "Popup", windowprops);
	pixWindow.document.write(out);
	pixWindow.focus();
	pixWindow.document.close();
	//return false;
}

function doNull(){
	return false;
}