
function showcontentInNews(w,h) {
    var popUp = document.getElementById("contentInNews");    
	
	popUp.style.top = "135px";   
	popUp.style.left = "10px";   
	popUp.style.width = w + "px";   
	popUp.style.height = h + "px";    
	popUp.style.visibility = "visible";
}


function hidecontentInNews() {
    var popUp = document.getElementById("contentInNews");   
	popUp.style.visibility = "hidden";
}