//Functions for sportsfail public

//displaying embeding content
	/*
	embedObject = document.getElementsByName('ea'); //get object
	var a = new Array();							//switch array
	for(var u=0; u<embedObject.length; u++){		//from 0 to # of objects that have embeds add "false" to switch array
		a.push(false);
		}*/
	var l;
	//function for embed object
	function embed_content(l){
		if(a[l]==false){
			a[l] = true;
			embedObject[l].style.visibility = "visible";
			return 0;
			}
		if(a[l]==true){
			a[l] = false;
			embedObject[l].style.visibility = "hidden";
			return 0;
			}
		}

