﻿function trim(str)
{
   return str.replace(/^\s*|\s*$/g,"");
}

function displaySiteInfo(nm)
{
	var name = trim(nm);
	var sites = new Array();
	sites['materialgirlsquiltshop'] = '<h3>MATERIAL GIRLS QUILT SHOP</h3>The Material Girls Quilt Shop is a quilt shop in Silverdale, WA. The site features an online store and a custom newsletter manager created from scratch using PHP.';
	sites['4scoreand7music'] = '<h3>4 SCORE + 7 MUSIC</h3>4 Score + 7 Music is a music production company in New York. Their site is a flash based template site featuring music clips in MP3 format.';
	sites['eckmancpa'] = '<h3>ECKMAN CPA</h3>Eckman CPA is a full service CPA firm in Vancouver, WA. The site was done completely in Macromedia Flash. It provides a basic web presence for the firm with an extra "kick" provided by the Flash animation.';
	sites['awiseowlhomeplan'] = '<h3>A Wise Owl Home Plan</h3>A Wise Owl Home Plan provides custom designed floorplans. Their website provides a dynamic, database driven listing of their floorplans that can be searched or browsed by category. It also features an administrative interface so the website administrator can manage the floorplans without the assistance of a web developer.s';
	sites['doitdigitalphotography'] = '<h3>DO IT DIGITAL PHOTOGRAPHY</h3>Do It Digital Photography is a photo studio in New York. The site features a "picture viewer" that is dynamically popluated via PHP.';
	sites['washougalpoliceofficersassociation'] = '<h3>WASHOUGAL POLICE OFFICER\'S ASSOCIATION</h3>The Washougal Police Officer\'s Association represents Washougal police officers during contract negotiations, disciplinary matters, etc. The site has a member\'s only area that features a message board for it\'s members to discuss association related matters.';
	sites['identityclarkcounty'] = '<h3>IDENTITY CLARK COUNTY</h3>Identity Clark County supports public/private undertakings that link civic improvements with a healthy economic environment in Clark County, Washington. Their site is an html template based site that provides a basic web presence for their organization.';
	sites['evergreenpediatricclinic'] = '<h3>EVERGREEN PEDIATRIC CLINIC</h3>Evergreen Pediatric is the oldest solo-specialty pediatric group in Vancouver, Washington. Their custom site features a dynamic "meet your doctor" page built using PHP.';
	sites['virtualinformationexecutives'] = '<h3>VIRTUAL INFORMATION EXECUTIVES</h3>Virtual Information Executives is a business unit of Hepieric, Inc. VIE provides CIO level expertise on a contract, part-time or full-time basis. Their template based site features some basic flash animation and an overview of the services they offer.';
	sites['portcw'] = '<h3>PORT OF CAMAS-WASHOUGAL</h3><p>The Port of Camas-Washougal maintains a marina, an airport, an industrial park and provides various other services for Camas and Washougal Washington. Their custom site features:</p><ul><li>A new improved look</li><li>Cleaner, standards compliant code that results in a faster loading, more efficient website that renders correctly in all major browsers.</li><li>Dynamic, database driven tenant listing that allows for more timely updates and easier administration</li><li>Tenant page that utilizes AJAX to load tenant information</li><li>A leaner, more compact navigation menu that uses XML, CSS, and a tiny bit of Javascript</li></ul>';
	
	var screenshots = new Array();
	screenshots['materialgirlsquiltshop'] = '<img src="images/portfolio/thumbnails/materialGirls.jpg" width="174" height=138" alt="" />';
	screenshots['4scoreand7music'] = '<img src="images/portfolio/thumbnails/4score.jpg" width="175" height="101" alt="" />';
	screenshots['eckmancpa'] = '<img src="images/portfolio/thumbnails/eckmancpa.jpg" width="175" height="124" alt="" />';
	screenshots['awiseowlhomeplan'] = '<img src="images/portfolio/thumbnails/awiseowlhomeplan.jpg" width="175" height="190" alt="" />';
	screenshots['doitdigitalphotography'] = '<img src="images/portfolio/thumbnails/doItDigital.jpg" width="174" height="100" alt="" />';
	screenshots['washougalpoliceofficersassociation'] = '<img src="images/portfolio/thumbnails/wpoa.jpg" width="174" height="99" alt="" />';
	screenshots['identityclarkcounty'] = '<img src="images/portfolio/thumbnails/icc.jpg" width="174" height="158" alt="" />';
	screenshots['evergreenpediatricclinic'] = '<img src="images/portfolio/thumbnails/evergreen.jpg" width="175" height="97" alt="" />';
	screenshots['virtualinformationexecutives'] = '<img src="images/portfolio/thumbnails/vie.jpg" width="175" height="164" alt="" />';
	screenshots['portcw'] = '<img src="images/portfolio/thumbnails/portcw.jpg" width="173" height="204" alt="" />';
	
	var links = new Array();
	links['materialgirlsquiltshop'] = 'http://silverdalequiltshop.com';
	links['4scoreand7music'] = 'http://4scoreand7music.com';
	links['eckmancpa'] = 'http://eckmancpa.com';
	links['awiseowlhomeplan'] = 'http://awiseowlhomeplan.com';
	links['doitdigitalphotography'] = 'http://doitdigitalphotography.com';
	links['washougalpoliceofficersassociation'] = 'http://washougalpolice.org';
	links['identityclarkcounty'] = 'http://identityclarkcounty.org';
	links['evergreenpediatricclinic'] = 'http://evergreenpediatric.com';
	links['virtualinformationexecutives'] = 'http://viexecs.com';
	links['portcw']= 'http://portcw.com';
	
	var element = document.getElementById('column2');
	if(element)
	{
		if(sites[name] != undefined)
		{
			element.innerHTML = sites[name];
		}
		else
		{
			element.innerHTML = "Unable to load site data";
		}
	}
	else
	{
		alert('element not found');
	}
	
	element = document.getElementById('column1');
	if(element)
	{
		if(sites[name] != undefined)
		{
			element.innerHTML = screenshots[name] + "<a href=\"" + links[name] + "\" class=\"orange_text\">[ View Site ]</a>";
		}
		else
		{
			element.innerHTML = "Unable to load screenshot";
		}
	}
	else
	{
		alert('element not found');
	}
}