
function showfcInNews(w,h) {
    var popUp = document.getElementById("fcInNews");    
	
	popUp.style.top = "5px";   
	popUp.style.left = "565px";   
	popUp.style.width = w + "px";   
	popUp.style.height = h + "px";    
	popUp.style.visibility = "visible";
}


function hidefcInNews() {
    var popUp = document.getElementById("fcInNews");   
	popUp.style.visibility = "hidden";
}