// JavaScript Document
var originalTabColour = "#FBBF34";
function hoverHeadTab(tabId){
		if(navigator.userAgent.indexOf("MSIE") != -1){
			document.getElementById(tabId).style.backgroundColor="#D9E1F1";
		} else {
			return;
		}
}

function hoverHeadTabRelease(tabId){
		if(navigator.userAgent.indexOf("MSIE") != -1){
			document.getElementById(tabId).style.backgroundColor = originalTabColour;
		} else {
			return;
		}
}

function displayFullNews(id){
	//document.getElementById("newsDots").style.display = "none";
	
	
	//document.getElementById("moreNews").style.display = "inline";
	//document.getElementById("readMoreNewsLink").style.display = "none";
	window.open("newsFull.php?artid=" + id, "newsPop", "width=500,height=600,scrollbars=yes");
}

//ediy v2
function removeIEBug(){
	
	if(document.all){
		
		if(document.getElementById("topflash")){
			
			//var flContent = document.getElementById("topflashcontainer").firstChild;
			//var flContent = document.getElementById("topflashcontainer").innerHTML;
			//var strCont = flContent;
			
			//document.getElementById("topflashcontainer").removeChild(document.getElementById("topflash"));
			
			//document.getElementById("topflashcontainer").innerHTML = flContent;
		}
	}
	
	
}
