function setCookie(name, value, expires, path, domain, secure)
{document.cookie= name + "=" + escape(value) +
((expires) ? "; expires=" + expires: "") +
((path) ? "; path=" + path : "") +
((domain) ? "; domain=" + domain : "") +
((secure) ? "; secure" : "");}
if (top) 
	{if(top.location.href == document.location.href){
		var d = new Date();d.setMinutes(d.getMinutes()+1);
		setCookie("redirect",unescape(document.location.href),d,"/english/");
		document.location = "/english/english_index.htm?r=@";}
}