/////////////////////////////////////////////////
// Coca-Cola Global Football                   //
// universal opener Script                     //
// created by argonauten360° Berlin 01/2006    //
// © The Coca-Cola Company                     //
/////////////////////////////////////////////////

// ccgf opener function
function openCCGF() {
	// country: country code
	// lang: language code
	country = "CZ";
	lang = "en"
	var url = "http://football.icoke.com/html/index.html";	
	if (country && lang) url += "?country="+country+"&lang="+lang;
	var fs = openFSWindow(url, "yes", "yes");
}

// function to open full-screen window
function openFSWindow(pUrl, resize, scrollbars) {	
	var w = window.screen.availWidth;
	var h = window.screen.availHeight;
	if (document.layers)
	{
		var tmp1 = window.outerWidth - window.innerWidth;
		var tmp2 = window.outerHeight - window.innerHeight;
		w -= tmp1;
		h -= tmp2;
	}
	var pParameter = "toolbar=no,status=yes,location=no,resizable="+resize+",scrollbars="+scrollbars+",width=" + w +",height="+ h + ",left=0,top=0";	
	var win;	
	if (win = window.open(pUrl, "FSwin", pParameter)) {		
		if (document.layers)	{	
			win.resizeTo(w,h);	
			win.moveTo(0,0);
			win.focus();
			return win;
		}	
	}
}