//Set your URL Here. Change the Yahoo Address to your link.

var url = "http://www.translationservicesuk.co.uk/index.php?mod=quote&act=new";
var adrollup;

function GoToLink()
{
	window.location = url;
}

function deployadrollup()
// initializing
{
	adrollup = document.getElementById('adrollup');
	adrollupheight = 90; // total height of adrollup in pixels
	adrollupoverlap = 21; // height of the 'overlap' portion only (semi-transparent)
	adrolluptimeout = setTimeout(startadrollup, 2000);
}

function startadrollup()
{
	adrollupposition = 0; // adrollupposition is expressed in percentage points (out of 100)
	adrolluptimeout = setInterval(positionadrollup, 25);
}

function positionadrollup()
{
	adrollupposition += 10;
	adrollup.style.marginBottom = '-' + (((100 - adrollupposition) / 100) * adrollupheight) + 'px';
	if (adrollupposition >= 100)
	{
		clearTimeout(adrolluptimeout);
		adrolluptimeout = setTimeout(finishadrollup, 1);
	}
}

function finishadrollup()
{
	
	adrollup.style.marginBottom = '0';	
	document.body.parentNode.style.paddingBottom = (adrollupheight - adrollupoverlap) +'px';
		
}

function destroyadrollup()
{
	var adrollup = document.getElementById('adrollup');
	document.body.removeChild(adrollup); 
	document.getElementsByTagName('html')[0].style.padding= '0'; 
	return false;
}