function openWindow6(){

var windowpop=window.open("tomsoup.html ", "windowpop", "toolbar=no, status=no, width=200, height=500, resizable=no, scrollbars=no, menubar=no");

var searchword=document.form.input.value;



	windowpop.document.write("<b>Your searchword was: <br />"+searchword+"</b><br />");

var page=new Array();
page[0]="Tomato and basil soup";
page[1]="Broccoli and stilton soup";
page[2]="Carrot and sweet potato soup";


var x=new Array();
x[0]="tomato basil roast roasting";
x[1]="broccoli potato stilton dolcelatte gorganzola";
x[2]="carrot sweet potato curry powder spices";


var link=new Array();
link[0]="tomsoup.html";
link[1]="broccoli.html";
link[2]="carrot.html";


for(var i=0; i<=page.length; i++){
	var keyword=x[i];
	var result=keyword.indexOf(searchword,0);
	if(result>=0){
	windowpop.document.write("<a href='"+link[i]+"'><b>"+page[i]+"</b></a><br />");
}

}
	windowpop.document.write("<br />If there are no results found please check your spelling or try a related word.");


}




