var Descrips={
Rating:['Personal Rating based upon achieved goals, usefulness, final project outcome, time it took to make, and skill level.',0,2,1],
Langs:['Computer languages used for the project.',2,0,0],
Reqs:['Requirements to run the project.  Windows is always assumed, unless noted with a <span class=CrossOS>*</span>, meaning the application was built for cross operating system compatibility.',0,3,0],
Dwnld:['Download Binary and/or Source.  A <font color=red>red notice</font> will indicate if the source will later be provided or if multiple downloads are available in the project’s contents.',1,0,1],
ProjTime:[
	'In the format "StartDate-EndDate: ProjectedTime"<br><br>'+
	'StartDate & EndDate: Start/End Date (Official release, not including updates) of the project. I am as accurate as possible with these, with a precision of a month.  I had to go through a lot of old logs to find some of this info :-(<br><br>'+
	'ProjectedTime: These are the guessed amount of time spent doing a project, unless noted with a <span class=Proj>*</span>, meaning time was kept track of.',2,1,3],
Stat:[
	'Status of project with the following possibilities:'+
	'<li><span class=Completed>Completed</span> (and released) - Updates may still be made in the future</li>'+
	'<li><span class=Completed>Specs Completed</span>: These are not so much true projects as just data from assignments or such.</li>'+
	'<li><span class=Completed>Ongoing</span>: Project will never be considered \"complete\" and will be continually receiving updates</li>'+
	'<li><span class=Completed>##% organized</span>: Project was/is completed, and just need a certain amount of touching up for release.  Expect to see these being released periodically in the near future.</li>'+
	'<li><span class=NotCompleted>##% completed</span>: Project has not been completed, and should not be expected for release any time soon.</li>'+
	'<li><span class=NotCompleted>Abandoned</span>: Project is incomplete and there are no plans to finish it.</li>',1,1,1],
Information:['Main scope and explanation of the project without going into intricates.',3,0,4],
Concepts:['Important programming concepts used in the project',4,0,0],
Notes:['Interesting notes, or things I learned from the project',3,0,9]
}, P;
if((P=$('ProjectTableList'))==undefined) //Project page
{
	for(var i in Descrips)
		if($(i)!=undefined)
			CreatePB($(i), 'PopupBoxMove', Descrips[i][0], 310, {className:'PopupLink '+$(i).className});
}
else //Project list page
{
	for(var n=0, O;n<P.childNodes.length;n++)
		for(var i in Descrips)
			if((O=P.childNodes[n].rows[Descrips[i][1]].cells[Descrips[i][2]].childNodes[Descrips[i][3]])!=undefined)
				CreatePB(O, 'PopupBoxMove', Descrips[i][0], 310, {className:'PopupLink '+O.className});
}

