


function SC_Go_Url(url)
{
	document.location=url;
}


function send(adress,domain)
{
	document.location.href='mai'+'lto:'+adress+'@'+domain;
}


function SC_Backtotop()
{
	offset=window.pageYOffset;
	if(document.documentElement.scrollTop) offset=document.documentElement.scrollTop; // MSIE
	SC_One(offset);
}


function SC_One(offset)
{
	new_offset=Math.abs(Math.floor(offset/3*2));
	window.scrollTo(0,new_offset);
	if(new_offset>0) SC_Two(new_offset);	
}


function SC_Two(offset)
{
	setTimeout("SC_One("+offset+")",10);
}
