// JavaScript Document
function expandingWindow(website)
	{

	var leftdist = 5;   
	var topdist = 50; 
	var winwidth = 300;  
	var winheight = 300;
	
	leftdist = screen.availWidth - (winwidth + 20);
	

	if (document.all)
		{
		topdist = screen.availHeight;
		}
	else
		{
		topdist = screen.availHeight - winheight;
		}   
	
	sizer = window.open(website,"mondiali","left=" + leftdist + ",top=" + topdist + ",width=" + winwidth + ",height=" + winheight + ",scrollbars=no");		


	if (document.all)
		{
		var heightspeed = 3; // velocità di scorrimento verticale (higher = slower)	
		var winwidth = 300;
		var winheight = 300;
			
		leftdist = screen.availWidth - (winwidth + 20);
		topdist = screen.availHeight;	
					
		for (; topdist > screen.availHeight-(winheight+45); topdist -= heightspeed)
			{
			sizer.moveTo(leftdist, topdist);
			}	
		}


	}
