
function addProj(t,d)
{
  proj[proj.length] = {title: t, designer: d};	
}

var proj = [];



addProj("Once Upon A Time","Passione Ricamo");
addProj("Nativity", "MarBek");
addProj("Peace","Tor Rhuann Designs");
addProj("Green Earth", "Victoria Sampler");


if (proj.length == 0 ) {
  document.write("<i>Nothing at the moment...</i><br>");
}

for (var i = 0; i <proj.length; i++)
{
  document.write("<i>" + proj[i].title + "</i> - "+proj[i].designer+"<br>");
}
