<!--
function displayWindow(url,name,width,height) {
        window.open(url,name,'width=' + width + ',height=' + height + ',resizable=0,location=no,scrollbars=1,status=no,menubar=no,left=0,top=0' );

}

function displayInfoVote() {
if (document.vote.scorer_first_goal.value!="" && document.vote.scorer_first_goal_for_juve.value!="")
  {alert("Nie możesz głosować jednocześnie na strzelca pierwszej bramki i strzelca pierwszej bramki dla Juve!")} 
}

function toggleDisplay(switch_obj, switch_on, switch_off, class_name, class_show, class_hide)
{
	var class_state, CSSRules;
	if (switch_obj.className == switch_on) {
		switch_obj.className = switch_off;
		class_state = class_hide;
	} else {
		switch_obj.className = switch_on;
		class_state = class_show;
	}

	if (document.all) {
		CSSRules = 'rules';
	}
	else if (document.getElementById) {
		CSSRules = 'cssRules';
	}

	for (var i = 0; i < document.styleSheets[1][CSSRules].length; i++) {
		if (document.styleSheets[1][CSSRules][i].selectorText == class_name) {
			document.styleSheets[1][CSSRules][i].style['display'] = class_state;
		}
	}
}

//-->

