
function showcontentRibbon(w,h) {
    var popUp = document.getElementById("contentRibbon");    
	
	popUp.style.top = "130px";   
	popUp.style.left = "10px";   
	popUp.style.width = w + "px";   
	popUp.style.height = h + "px";    
	popUp.style.visibility = "visible";
}


function hidecontentRibbon() {
    var popUp = document.getElementById("contentRibbon");   
	popUp.style.visibility = "hidden";
}
