var newWin

function launchPopupWindow(popup_url,popup_name,popup_width,popup_height,popup_scrollbars) {
	
	winTop = (screen.height-popup_height)/2;
	winLeft = (screen.width-popup_width)/2;

	newWin = window.open(popup_url,popup_name,'width=' + popup_width + ',height=' + popup_height + ',top=' + winTop + ',left=' + winLeft + ',scrollbars=' + popup_scrollbars + ',resizable=no,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=yes');

	newWin.focus();
}

function launchWorldCup() {

	winX = 580
	winY = 360
	winURL = 'http://worldcup.adidas.com/football/login/wc_login.asp?language=en'
	winName = 'worldcup2002'

	winTop  = (screen.height-winY)/2;
	winLeft = (screen.width-winX)/2;

	newWin=window.open(winURL,winName,'width='+winX+',height='+winY+',top='+winTop+',left='+winLeft+',scrollbars=0,resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,copyhistory=0');

	newWin.focus();
}


function launchClimaCool(reg)
{
	var newWin
	document.cookie = "region=" + reg
	winUrl = 'application/frame.asp'
	winName = 'Climacool_' + reg

	if (screen.width <= 800)
	{
		winX = 800
		winY = 600
		winFeatures = 'scrollbars=no,resizable=no,toolbar=no,location=no,directories=no,status=yes,menubar=no,copyhistory=no'
		newWin = window.open(winUrl,winName,'width='+winX+',height='+winY+',top='+(screen.height-winY)/2+',left='+(screen.width-winX)/2+','+winFeatures);
	}
	else
	{
		winX = 1024
		winY = 768
		winFeatures = 'scrollbars=yes,resizable=yes,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,copyhistory=yes'
		newWin = window.open(winUrl,winName,'width='+winX+',height='+winY+',top='+(screen.height-winY)/2+',left='+(screen.width-winX)/2+','+winFeatures);
	}
	newWin.focus();
}
