function selectProject(cID, pID) {
	if ( document.getElementById('portfolioDetails') ) {
		getDetails(pID);
	} else {
		document.location = '/00/ym/1/portfolio/0/'+pID+'/index.html';
	}
}

function setContent(obj) {
	document.getElementById('portfolioDetails').innerHTML = obj.responseText.replace(/&amp;/g, "&").replace(/&lt;/g,"<").replace(/&gt;/g, ">");
	displayDetails();
}

function displayDetails() {
	document.getElementById('portfolioDetails').style.visibility = 'visible';
}