var o1;
var o2;

function Showing()
{
    if (parseInt(o1.style.width) > 330) {
        o2.style.display = 'block';
        setTimeout('Close()', 100000);
    } else {
        o1.style.height = parseInt(o1.style.height) + 40;
        o1.style.width = parseInt(o1.style.width) + 50;
        o1.style.display = '';
        setTimeout('Showing()', 1);
    }
}

function Adv()
{
	if (document.all) {
		o1 = document.all['Adv'];
		o2 = document.all['AdvText'];
	}
	else {
		o1 = document.getElementById('Adv');
		o2 = document.getElementById('AdvText');
	}
	o1.style.display = '';
	o2.style.display = '';
	setTimeout('Close()', 15000);
	//o2.style.display = 'none';
	//setTimeout('Showing()', 100);
}

function Close()
{
	o1.style.display = 'none';
	o2.style.display = 'none';
}

