
function do_click(text){
		
	redirects=new Array();
	redirects[1]='health_care.html';
	redirects[2]='industrial_wipes.html';
	redirects[3]='janitorial.html';
	
	
	keywords=new Array();
	keywords[1]=new Array();
	keywords[1][1]='patient wipe';
	keywords[1][2]='nursing wipe';
	keywords[1][3]='care home wipe';
	keywords[1][4]='care wipe';
	keywords[1][5]='inco wipe';
	keywords[1][6]='incontinence wipe';
	keywords[1][7]='professional wipe';
	keywords[1][8]='maceratable wipe';
	keywords[1][9]='moist wipe';
	keywords[1][10]='medical wipe';
	keywords[1][11]='NHS wipe';
	keywords[1][12]='surgical wipe';
	keywords[1][13]='stoma wipe';
	keywords[1][14]='colostomy wipe';
	keywords[1][15]='hygiene wipe';
	keywords[1][16]='personal care wipe';
	keywords[1][17]='body wipe';
	keywords[1][18]='body cleaning wipe';
	keywords[1][19]='cleansing wipe';
	keywords[1][20]='wet wipe';
	keywords[1][21]='readiwipe';
	keywords[1][22]='contiwipe';
	keywords[1][23]='hyzorb wipe';
	keywords[1][24]='dental wipe';
	keywords[1][25]='nursery wipe';
	keywords[1][26]='washing wipe';
	keywords[1][27]='washcloth';
	keywords[1][28]='flannel';	
	
	keywords[2]=new Array();
	keywords[2][1]='scrub wipe';
	keywords[2][2]='industrial wipe';
	keywords[2][3]='wipers';
	keywords[2][4]='rags';
	keywords[2][5]='cloths';
	keywords[2][6]='hand wipes';
	keywords[2][7]='hand cleaner wipes';
	keywords[2][8]='tough wipes';
	keywords[2][9]='lint free wipes';
	keywords[2][10]='lint free cloths';
	keywords[2][11]='low lint wipes';
	keywords[2][12]='print wipe';
	keywords[2][13]='electronics wipes';
	keywords[2][14]='engineers wipe';
	keywords[2][15]='tradesmans wipe';
	keywords[2][16]='trade wipe';
	keywords[2][17]='DIY wipe';
	keywords[2][18]='mechanics wipe';
	keywords[2][19]='automotive wipe';
	keywords[2][20]='oil and grease wipe';
	keywords[2][21]='abrasive wipe';
	keywords[2][22]='textured wipe';
	keywords[2][23]='dry wipe';
	keywords[2][24]='paper roll';
	keywords[2][25]='laboratory wipe';
	keywords[2][26]='nonwoven wipe';
	keywords[2][27]='body shop wipe';
	keywords[2][28]='painters wipe';	
	keywords[2][29]='citrus wipe';	
	keywords[2][30]='absorbent wipe';	
		
	
	keywords[3]=new Array();
	keywords[3][1]='cleaning cloths';
	keywords[3][2]='all purpose cloths';
	keywords[3][3]='j cloth';
	keywords[3][4]='colour coded cloths';
	keywords[3][5]='hard surface wipe';
	keywords[3][6]='sanitising wipe';
	keywords[3][7]='food safe wipe';
	keywords[3][8]='non tainting wipe';
	keywords[3][9]='thermometer probe wipe';
	keywords[3][10]='washroom wipe';
	keywords[3][11]='alcohol wipe';
	keywords[3][12]='viscose wipe';
	keywords[3][13]='kitchen wipe';
	keywords[3][14]='bathroom wipe';
	keywords[3][15]='canteen wipe';
	keywords[3][16]='restaurant wipe';
	keywords[3][17]='hotel wipe';
	keywords[3][18]='food preparation wipe';
	keywords[3][19]='office wipes';
	
	
	

	for(i=1;i<5;i++){
		for(j=1;j<=keywords[i].length;j++){
			if(text==keywords[i][j]){
				window.location=redirects[i];
			}
		}
	}

}

