function showcase(item)
{
var image_name;
var client_name;
var project_name;
var project_desc;
var project_link;

var closewindow = "<div style=\"text-align:right; height:12px; width:100%; background-color:#FFFFCC;\"><span class=caption><a href=\"javascript:hideIt('showcase');\">[X] CLOSE</a> this window</span></div>";

switch(item)
{
case "sebis":
image_name = "sebis_lg.jpg";
client_name = "Sebis Direct Document Management";
project_name = "Service branding and web redesign";
project_desc = "Sebis is a document management company that handles sensitive communications such as transcripts, utility bills"+
" and insurance policies. Their services are very demanding however their previous website did not reflect the level of professionalism"+
"that they bring to their work. We worked with them to brand each of their service offerings creating a family of brand marks that"+
"are carried throughout their communications. We also redesigned their web site and have started to undertake a usability audit and overhaul"+
"of their online application screens.";
project_link  = "http://www.pixelsandpackets.com/sebis";
break;

case "nwna":
image_name = "nwna_lg.jpg";
client_name = "Nestl&eacute; Waters";
project_name = "Foodservice Promotional Intranet";
project_desc = "We worked with the NW team to create a secure intranet for their foodservice customers to utilize for ongoing promotions."+
"Contained within the site are flash applications that display a facility floorplan, suggested merchandising methods and profitability calculators."+
"This site became a \'sticky\' destination for their foodservice customers and provided compelling arguments for stocking more bottled water.";
project_link  = "http://www.nestle-waterssource.com";
break;

case "mplayer":
image_name = "mplayer_lg.jpg";
client_name = "MPlayer - The Media Player for Linux";
project_name = "Logo and Identity";
project_desc = "The MPlayer project was looking on sourceforge.net for a designer to provide a logo for their very successful project"+
" Many designers provided their ideas and our logo was chosen from the herd. Makes us smile to think about all the little MPlayer logos"+ 
" on all the Linux desktops out there.";
project_link  = "http://www.mplayerhq.hu/";
break;

case "arc":
image_name = "arc_lg.jpg";
client_name = "Arc Technology Group";
project_name = "Logo and Identity";
project_desc = "When the fine java development shop of aesiq decided to rebrand themseleves as arc technology group we were on hand "+
"to provide them with a new identity.We didn't design their site but provided them with logo, theme and vibe.";
project_link  = "http://www.aesiq.com";
break;

case "protect":
image_name = "protect_lg.jpg";
client_name = "Pro-Tect &amp; Associates";
project_name = "Site redesign and eCommerce integration";
project_desc = "Pro-Tect has an extensive online catalog of surface protection products that is constantly being updated and revised. "+
"Unfortunately their first generation web site did not make that an easy process. We stepped in and provided them with a secure, easy to manage "+
"eCommerce solution, integrated it with Authorize.net and trained them on the management tools.";
project_link  = "http://development.pro-tect.com";
break;

case "simplotav":
image_name = "simplot_avocado_lg.jpg";
client_name = "Simplot Foodservice";
project_name = "Marketing Program";
project_desc = "We undertook this project with Simplot to integrate their print advertisments with online \"microsites\" in order "+
"to provide some metrics on their advertising ROI. Print ads carried a clear call to action to visit this narrow-focus microsite and "+
" each site was set up to monitor and report on exact visitor actions. A great tool that revealed what magazines had the most effective placements."+
" And the client loved the spinning avocado.";
project_link  = "http://www.simplotavocadorb.com";
break;

case "simplotrw":
image_name = "simplot_roastworks_lg.jpg";
client_name = "Simplot Foodservice";
project_name = "Marketing Program";
project_desc = "We undertook this project with Simplot to integrate their print advertisments with online \"microsites\" in order "+
"to provide some metrics on their advertising ROI. Print ads carried a clear call to action to visit this narrow-focus microsite and "+
" each site was set up to monitor and report on exact visitor actions. A great tool that revealed what magazines had the most effective placements.";
project_link  = "http://www.simplotroastworksrb.com";
break;

case "marc":
image_name = "marc_large.jpg";
client_name = "Marc Realty";
project_name = "Site redesign &amp; CMS integration";
project_desc = "Marc Realty is one of Chicago\'s top commercial real estate firms. We worked with their marketing and sales teams to design "+
" and build an easy to use and easy to maintain site that lists all available spaces in all of their properties. We developed custom content management tools and "+
"trained their staff on their use.";
project_link  = "";
break;

case "barber":
image_name = "blg_lg.jpg";
client_name = "Barber Law Group";
project_name = "Site Design &amp; Production";
project_desc = "The Barber Law Group is a rising star among Bay Area law firms. We worked with them to create a site for their firm that conveyed their "+
"philosophy and attorney experience.";
project_link  = "http://www.barberlg.com";
break;

default:

break;
}

// make visible
document.getElementById('showcase').style.display = 'block';

var showcaseCode = closewindow;

if(image_name != ""){ showcaseCode = showcaseCode +  "<img src=\"images/"+image_name+"\"><br>"; }
if(client_name != ""){ showcaseCode = showcaseCode + "<span class=bodytext><b>CLIENT:</b> "+client_name+"<br>"; }
if(project_name != ""){ showcaseCode = showcaseCode + "<br><span class=bodytext><b>PROJECT:</b> "+project_name+"<br>"; }
if(project_desc != ""){ showcaseCode = showcaseCode + "<br><span class=bodytext><b>DESCRIPTION:</b> "+project_desc; }
if(project_link != ""){ showcaseCode = showcaseCode + "&nbsp; &nbsp;<a href=\""+project_link+"\" target=new>view</a></span><br><br>"; }

showcaseCode = showcaseCode + closewindow;

document.getElementById('showcase').innerHTML = showcaseCode;

}


function hideIt(it)
{
document.getElementById(it).style.display = 'none';	
}
