function descriptionSeeAll(id) {
	showHolderId = "descriptionHolder" + id;	
	hideHolderId = "descriptionHolderAll" + id;
	document.getElementById(showHolderId).style.display="none";
	document.getElementById(hideHolderId).style.display="block";
	document.getElementById("descriptionSeeAllClicker"+id).style.display="none";
	document.getElementById("descriptionHideAllClicker"+id).style.display="block";
}

function descriptionHideAll(id) {	
	showHolderId = "descriptionHolderAll" + id;
	hideHolderId = "descriptionHolder" + id;
	document.getElementById(showHolderId).style.display="none";
	document.getElementById(hideHolderId).style.display="block";
	document.getElementById("descriptionSeeAllClicker"+id).style.display="block";
	document.getElementById("descriptionHideAllClicker"+id).style.display="none";
}

function cmsPopup(uri,id,scrollbar) {
	if(id==null || myPopupArray[id]==null || myPopupArray[id].closed ) {
		if(scrollbar==null) {
			scrollbar="no";
		}
		widthDim=600;
		heightDim=650;
		topDim=50;
		leftDim=50;
		title='KATJ';
		if(id==null) {
			date = new Date();
			title+=date.getMilliseconds();
		} else {
			title+=id;
		}
		resizable='yes';
		var myPopup = window.open(uri,title,"resizable=yes,toolbar=0,scrollbars="+scrollbar+",location=0,statusbar=0,menubar=0,width="+widthDim+",height="+heightDim+",left="+leftDim+",top="+topDim);
		if(id!=null) {
			 myPopupArray[id] = myPopup;
		}
	} else {
		myPopupArray[id].focus();
	}
}