function SAMA_BuiltProfilSection ()
{
	var colorA 	= "#656565";
	var colorB	= "#999999";
	var colorC	= "#999999";
	var profilSection	= SAMA_CreateFieldsetMarkout (
					SAMA_CreateLegendMarkout ("#CCCCCC", "2", "Profil :") 
					+
					SAMA_CreateTableMarker ("0", "",
					(
						SAMA_CreateProfileLine ("Nickname", 	new Array(	"sama.van"), 		colorA) +
						SAMA_CreateProfileLine ("Birthday", 	new Array(	"7th december 1982"), 	colorB) +
						SAMA_CreateProfileLine ("Location", 	new Array(	"Tsu, Mie, Japan (from July 7th 2008)"), 	colorA) +
						SAMA_CreateProfileLine ("Job", 		new Array(	"3D Game Artist"), 	colorB) +
						SAMA_CreateProfileLine ("Study", 	new Array(	" - 2004 - First Years of Japanese High School - Jussieux, Paris, France.",
													"- 2002/2004 - LISAA - Game School - ChercheMidi, Paris, France.",
													"- 2001/2002 - Art Workshop Monique Jacquet - Angoulême, France.",
													"- 2000/2001 - Charles Henry Coulomb - Electronic - Angoulême, France."
													), colorA) +
						SAMA_CreateProfileLine ("Work with", 	new Array(	"- Maya 2009",
													"- 3dsmax 8.0",
													"- Photoshop CS",
													"- quest 3D 4.2",
													"- Virtools 3.0"), 	colorB) +
						SAMA_CreateProfileLine ("Language", 	new Array(	"- French (mother language)",
													"- English (written&spoken : good)",
													"- Japanese (learning)"), 	colorA) +
						SAMA_CreateProfileLine ("Programming", 	new Array(	"- MelScript",
													"- JavaScript",
													"- Quest3D",
													"- Virtools"), 		colorB) +

						SAMA_CreateProfileLine ("My \"Argh\"", 	new Array(	"- Critics without interet",
													"- Do nothing on my life",
											 		"- Work with the cigarette smoke on my nose"), colorA) +
						SAMA_CreateProfileLine ("Occupation<br/>when I'm bored to death",
											new Array(	"- Play piano",
													"- Listen Music (samurai champloo, ZOE, Ridge racer, Shiina Ringo, Koda Kumi, Glay, L’arc-en-Ciel, Utada Hikaru...)"), colorB) +
						SAMA_CreateProfileLine ("Big Dream", 	new Array(	"To build his own 3D company!"), colorA)
					)))

					+
					
					SAMA_CreateFieldsetMarkout (
										SAMA_CreateLegendMarkout ("#CCCCCC", "2", "Personnal history as FreeLancer:") 
										+
										SAMA_CreateTableMarker ("0", "",
										(
										//	SAMA_CreateProfileLine ("Years", 				new Array("Company"), 	colorB) + 
											SAMA_CreateProfileLine (" January 2009 to present days", 	new Array("FreeLancer on iPhone and other game Industry (Outside Japan)"), 	colorB) +
											SAMA_CreateProfileLine (" 2008 - August <br>2008 - December", 	new Array("FreeLancer for Sakaguchi-holdings (Japan)"), 	colorA) 
									)))

					
					+
					
					SAMA_CreateFieldsetMarkout (
										SAMA_CreateLegendMarkout ("#CCCCCC", "2", "Personnal history as worker in a company:") 
										+
										SAMA_CreateTableMarker ("0", "",
										(
										//	SAMA_CreateProfileLine ("Years", 				new Array("Company"), 	colorB) + 
											SAMA_CreateProfileLine (" 2008 - June <br>2008 - March ", 	new Array("Team17 = Game Company in Osset (England)"), 	colorA) +
											SAMA_CreateProfileLine (" 2007 - December<br>2005 - May ", 	new Array("F4 - Gsme Conpany in Paris (France)"), 	colorB)
											
									)))
	return profilSection
}

function SAMA_CreateProfileLine (title, content, color)
{
	var firstTd		= SAMA_CreateFontMarker (color, "2", title, "1", "1");

	var secondTd		= "";
	var contentLength	= content.length;
	
	for ($i = 0; $i < contentLength; $i ++)
	{
		secondTd = secondTd + SAMA_CreateFontMarker (color, "2", content[$i], "1", "0") + "<br/>" ;
	}
	var tableContentA 	= SAMA_CreateTrMarker ("", (
							SAMA_CreateTdMarker ("150", "", "", firstTd)
						+ 	SAMA_CreateTdMarker ("300", "", "", secondTd)
					))
	return tableContentA
}