function ExpandContent(d) {
document.getElementById('few_'+d).style.display = "none";
document.getElementById('more_'+d).style.display = "";
}

function RemoveContent(d) {
document.getElementById('more_'+d).style.display = "none";
document.getElementById('few_'+d).style.display = "";
}

function popup(url) {
	var width = 600;
	var height = screen.availHeight * .7;
	var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
    var windowFeatures = "scrollbars=1," + "width=" + width + ",height=" + height + ",left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;
    myWindow = window.open(url, "popup", windowFeatures);
	return false;
}
