function redirect(find,redir)	
{
	if (window.location.href.toLowerCase().indexOf(find.toLowerCase())!=-1)
	{
		document.write('<meta http-equiv="refresh" content="0; URL='+redir+'">');
	}
}





