function nailto (s)
{document.location.href="mailto:" + unCryptMail(s);}

function unCryptMail (r)
{
	r=unescape(r);
	var l=r.length;
	var o = "";
	for (i=0; i < l; i++) {
  o +=String.fromCharCode (r.charCodeAt (i)-1);}
	return o;
}

function cryptMail (r)
	{var l=r.length;
		var o="";
		for (i=0; i < l; i++){
			o += String.fromCharCode (r.charCodeAt (i)+1);}
		return escape (o);}
		
function GoBack()
{	
//var BrowserName = navigator.appName;
//	if(BrowserName == "Microsoft Internet Explorer")
//		{
//			history.go (-1);
//		}
//	else
//	{
//		history.back();
//	}
//	
//	if(history.length < 1) 
//		{window.navigate("http://www.biox.biz/index.htm");}
//	else
//		{history.go (-1);}
	window.history.go(-1);
//	history.go (-1);
//window.navigate("http://www.biox.biz/index.htm")
//
//	<a href="../index.htm" target="_self">Back</a>
//	<a href="JavaScript:GoBack()">Back</a>
//	<a href="http://www.nojs.com" onclick="doSomething(); return false;">Click Me</a>
//	<a href="http://www.biox.biz" onclick=GoBack();>Back</a>
//	<a href="../index.htm" onClick="GoBack();" target="_self">Back</a>
return;
}