//Show project's name
function showProjectName(project_name)
{
	document.getElementById('project_name').innerHTML = "<span style='font-size: 12px;'>" + project_name + "</span>";
}

//Show project's actual info and description
function showProjectInformation(project_id, category_id)
{
	 //self.location = "website/includes/project_load.php?page=projects&project_id="+ project_id + "&category_id=" + category_id;	
	 window.frames.projectFrame.location = "website/includes/project_load.php?page=projects&project_id="+ project_id + "&category_id=" + category_id;	
}

//Show project testimonials
function showProjectTestimonials(project_id)
{
	 self.location = "?page=testimonials&project_id="+ project_id;	
}