<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Kromosome Smart Software Solutions &#187; Portofolio</title>
	<atom:link href="http://www.kromosome.net/category/portofolio/feed" rel="self" type="application/rss+xml" />
	<link>http://www.kromosome.net</link>
	<description>We enable small business to achieve and maintain a competitive edge through the development and implementation of enterprise, internet and intranet software applications.</description>
	<lastBuildDate>Sun, 05 Feb 2012 05:23:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Client Interface 2</title>
		<link>http://www.kromosome.net/client-interface-2</link>
		<comments>http://www.kromosome.net/client-interface-2#comments</comments>
		<pubDate>Fri, 14 Oct 2011 05:28:55 +0000</pubDate>
		<dc:creator>Mat Garland</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Portofolio]]></category>

		<guid isPermaLink="false">http://www.kromosome.net/?p=1337</guid>
		<description><![CDATA[Brief: Design an interface for a SaaS application that blends with the service offering of the site.]]></description>
			<content:encoded><![CDATA[<p><span id="more-1337"></span>Brief: Design an interface for a SaaS application that blends with the service offering of the site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kromosome.net/client-interface-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Client Interface</title>
		<link>http://www.kromosome.net/client-mockup</link>
		<comments>http://www.kromosome.net/client-mockup#comments</comments>
		<pubDate>Fri, 14 Oct 2011 04:28:29 +0000</pubDate>
		<dc:creator>Mat Garland</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Portofolio]]></category>

		<guid isPermaLink="false">http://www.kromosome.net/?p=1329</guid>
		<description><![CDATA[Brief: Approached by a local design agency to cut up and code an XHTML compliant web interface in CodeIgniter for their client, The Lavender Room. For an online view of the working interface please visit here]]></description>
			<content:encoded><![CDATA[<p><span id="more-1329"></span>Brief: Approached by a local design agency to cut up and code an XHTML compliant web interface in CodeIgniter for their client, The Lavender Room.</p>
<p>For an online view of the working interface please visit <a href="http://www.kromosome.net/lavender/" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kromosome.net/client-mockup/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MDArrayEngine: Javascript Array Class</title>
		<link>http://www.kromosome.net/javascript-multi-dimensional-array-class</link>
		<comments>http://www.kromosome.net/javascript-multi-dimensional-array-class#comments</comments>
		<pubDate>Wed, 07 Jul 2010 10:47:28 +0000</pubDate>
		<dc:creator>Mat Garland</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Portofolio]]></category>
		<category><![CDATA[2D array]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[javascript multi dimensional array class]]></category>
		<category><![CDATA[multi dimension array]]></category>

		<guid isPermaLink="false">http://www.kromosome.net/?p=1026</guid>
		<description><![CDATA[mdArrayEngine: A free to use Javascript class for multi dimension array creation and manipulation The MDArrayEngine class provides several functions to create and manipulate multi-dimensional arrays like adding, update, retrieve and delete scalar or array elements, searching for values, sum the element values and display the array values in a HTML page, it should assist [...]]]></description>
			<content:encoded><![CDATA[<p><span id="more-1026"></span><br />
<strong>mdArrayEngine: A free to use Javascript class for multi dimension array creation and manipulation</strong></p>
<p>The MDArrayEngine class provides several functions to create and manipulate multi-dimensional arrays like adding, update, retrieve and delete scalar or array elements, searching for values, sum the element values and display the array values in a HTML page, it should assist you with any Javascript projects incorporating multi dimensional array use.</p>
<p>As MDArrayEngine is a dual MIT &#038; GPL license, please feel free to modify or extend the class. If you feel that others could benefit from your work, please include a message <a href="http://www.kromosome.net/mdarrayengine">here</a> and your additions to the base class will be included as appropriate.</p>
<p><strong>How to Instantiate:</strong></p>
<p>1. Include the file mdArrayEngine.js in your project.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">    <span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span> src<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;js/mdArrayEngine.js&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>2. in your javascript, instantiate the array class in the following manner:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>2
3
4
5
6
7
8
9
10
11
12
13
</pre></td><td class="code"><pre class="javascript" style="font-family:monospace;">    <span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
        <span style="color: #006600; font-style: italic;">// instantiate the object</span>
        <span style="color: #003366; font-weight: bold;">var</span> a <span style="color: #339933;">=</span> KROMOSOME.<span style="color: #660066;">MDArrayEngine</span><span style="color: #339933;">;</span>
        <span style="color: #006600; font-style: italic;">// initialise the object</span>
        a.<span style="color: #660066;">init</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #006600; font-style: italic;">// load the array with values</span>
        a.<span style="color: #660066;">pushValue</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#91;</span><span style="color: #3366CC;">'test'</span><span style="color: #339933;">,</span><span style="color: #3366CC;">'try'</span><span style="color: #339933;">,</span><span style="color: #3366CC;">'alerts'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #006600; font-style: italic;">// get all array values as a formatted HTML table</span>
        <span style="color: #003366; font-weight: bold;">var</span> html <span style="color: #339933;">=</span> a.<span style="color: #660066;">arrayDump</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #006600; font-style: italic;">// output table to document to check values</span>
        document.<span style="color: #000066; font-weight: bold;">write</span><span style="color: #009900;">&#40;</span>html<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p><strong>List of KROMOSOME.MDArrayEngine functions:</strong></p>
<ul>
<li><strong>init()</strong>: Initialize the class array.</li>
<li><strong>getLength()</strong>: Return the length of the array.</li>
<li><strong>getRowLength([int] row)</strong>: Return the length of the array&#8217;s row.</li>
<li><strong>pushValue([object] v)</strong>: Push string or array of values onto the end of the array.</li>
<li><strong>rowPush([string] searchValue, [object] addValues)</strong>: Add items to an existing row where the searchValue matches.</li>
<li><strong>indexOfValue([object] v)</strong>: Return the array indices of the value (string or array) in the array.</li>
<li><strong>getValue([int] iRow, [int] iCol)</strong>: Return a value from the array matching the supplied row and column numbers.</li>
<li><strong>setValue([int] iRow, [int] iCol, [object] data)</strong>: Assign a value to the array matching the supplied row and column numbers.</li>
<li><strong>getRow([int] iRow)</strong>: Return a row from the array matching the supplied row number.</li>
<li><strong>getAllValues()</strong>: Return the entire contents of the array as an array.</li>
<li><strong>updateItem([object] searchVal, [object] replaceVal)</strong>: Replace the first occurrence of searchVal with replaceVal.</li>
<li><strong>upadteRow([object] searchVal, [object] replaceVal)</strong>: Replace a row in the array on the first match of searchVal.</li>
<li><strong>deleteRow([int] row)</strong>: Delete the row number corresponding to the row variable.</li>
<li><strong>updateRow_DualCondition([string] condition1, [string] condition1, [object] updateData)</strong>: Updates differences in matching row with data from updateData, or inserts a new row if no match found on search condition1 &amp; condition2, returns true for success, false for failure.</li>
<li><strong>column_Arithmetic_Sum_SingleCondition([int] conditionalColumn, [object] value, [int] columnToAdd)</strong>: Sum the values of the columnToAdd WHERE conditionalColumn = x AND conditionalColumn value = y.</li>
<li><strong>getJSON()</strong>: return the multi dimensional array as a JSON data type.</li>
<li><strong>arrayDump()</strong>: Display the entire contents of the array as an html table.</li>
</ul>
<p><a href="http://www.kromosome.net/md_array_engine/mdArrayEngine.js"><strong>Download mdArrayEngine</strong></a></p>
<p><a href="http://www.kromosome.net/md_array_engine/jsTest.html"><strong>Example Usage</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kromosome.net/javascript-multi-dimensional-array-class/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Web Based Reservations Manager</title>
		<link>http://www.kromosome.net/reservations-manager</link>
		<comments>http://www.kromosome.net/reservations-manager#comments</comments>
		<pubDate>Tue, 06 Apr 2010 21:26:22 +0000</pubDate>
		<dc:creator>Mat Garland</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Portofolio]]></category>
		<category><![CDATA[hotel booking software]]></category>
		<category><![CDATA[iPad web application]]></category>
		<category><![CDATA[reservations software]]></category>
		<category><![CDATA[room rental software]]></category>
		<category><![CDATA[web reservation software]]></category>

		<guid isPermaLink="false">http://www.kromosome.net/?p=891</guid>
		<description><![CDATA[URL: www.reservations-manager.com What is Reservations Manager? Currently under development, Reservations Manager™, is a graphicaly driven, real-time, web based (SaaS), booking and reservation system with an administration interface that will be deployable both on desktop computers and the Apple iPad platform via a traditional web browser. Whilst the administration system is web based, so too is [...]]]></description>
			<content:encoded><![CDATA[<p><span id="more-891"></span><span style="color: #000000"><span style="font-weight: normal"><span style="color: #808080"><strong>URL: </strong><span style="color: #000000"><a href="http://www.reservations-manager.com" target="_blank">www.reservations-manager.com</a></span><span style="color: #000000"> </span></span></span></span></p>
<p style="text-align: left"><span style="color: #808080"><span style="color: #808080"><strong>What is Reservations Manager?</strong></span></span></p>
<p style="text-align: left">Currently under development, Reservations Manager™, is a graphicaly driven, real-time, web based (SaaS), booking and reservation system with an administration interface that will be deployable both on desktop computers and the Apple iPad platform via a traditional web browser.</p>
<p style="text-align: left">Whilst the administration system is web based, so too is the client interface. Customers are able to make real-time online bookings, either directly from your web site, or through <strong>www.reservations-manager.com</strong> from their computer or hand held device.</p>
<p style="text-align: left">Furthermore, we are working toward partnering with other established booking and reservation providers to extend the reach of your distribution, enabling you to tap into a much larger audience.</p>
<p>Version 1.0 is due for release in November 2011, Reservations Manager&trade; is suitable for:</p>
<ul>
<li>Restaurant reservation systems;</li>
<li>Hotel / Motel / Hostel room reservation systems;</li>
<li>B&amp;B&#8217;s / Pansiyon reservation systems;</li>
<li>Campground reservation system</li>
<li>Corporate conference venue reservations;</li>
<li>Meeting room management &amp; reservations;</li>
<li>Training facility reservation systems;</li>
<li>Private education reservation systems;</li>
<li>Vehicle &amp; Boat reservation systems;</li>
<li>Service provision reservation systems;</li>
<li>Event management &amp; reservation systems;</li>
</ul>
<p>Further details including pre-release registration details can be found at <a href="http://www.reservations-manager.com" target="_blank">www.reservations-manager.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kromosome.net/reservations-manager/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>jQuery {css} designerGrid Plugin</title>
		<link>http://www.kromosome.net/jquery-css-designergrid-plugin</link>
		<comments>http://www.kromosome.net/jquery-css-designergrid-plugin#comments</comments>
		<pubDate>Tue, 09 Feb 2010 09:44:30 +0000</pubDate>
		<dc:creator>Mat Garland</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Portofolio]]></category>

		<guid isPermaLink="false">http://www.kromosome.net/?p=808</guid>
		<description><![CDATA[The {css} designerGrid jQuery plugin enables a web designer to view their design work in a standard browser with rulers and grids similar to that of Photoshop. When the grid z-index is toggled to the front, the designer can click the grid to get the exact &#8220;X,Y&#8221; screen coordinates for the clicked position enabling more [...]]]></description>
			<content:encoded><![CDATA[<p><span id="more-808"></span>The {css} designerGrid jQuery plugin enables a web designer to view their design work in a standard browser with rulers and grids similar to that of Photoshop.</p>
<p>When the grid z-index is toggled to the front, the designer can click the grid to get the exact &#8220;X,Y&#8221; screen coordinates for the clicked position enabling more precise positioning of elements on the screen. A demonstration of designerGrid can be seen <a href="http://www.kromosome.net/cssdesignergrid/" target="_blank">here</a>.</p>
<p>So far, the popularity of the {css} designerGrid appears to be higher than I anticipated with 1,728 unique hits to the demonstration page today (17th February 2010).</p>
<p>Currently {css} designerGrid does not work in Internet Explorer as it is the only browser that does not natively support the HTML 5 &lt;canvas&gt; element. Should the jQuery community require the plugin to function in IE, we will work toward a solution.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kromosome.net/jquery-css-designergrid-plugin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website Update / SMS Registration System</title>
		<link>http://www.kromosome.net/client-website</link>
		<comments>http://www.kromosome.net/client-website#comments</comments>
		<pubDate>Thu, 10 Dec 2009 22:47:24 +0000</pubDate>
		<dc:creator>Mat Garland</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Portofolio]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[Java Script]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[JSONP]]></category>
		<category><![CDATA[kromosome client portfolio]]></category>
		<category><![CDATA[MYSQL]]></category>
		<category><![CDATA[oynayarakogren]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[registration system]]></category>
		<category><![CDATA[SMS]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[T-SQL]]></category>
		<category><![CDATA[TSQL]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.kromosome.net/?p=684</guid>
		<description><![CDATA[The Client: Easy Go Education (Istanbul, Turkey) URL: www.oynayarakogren.com Project Brief: Although obtaining a high visitor count to the existing e-commerce website, our client was not successfully converting site visitors to sales of their flagship product, &#8220;What Is This?&#8221;™, an educational English language game for children. Our brief for the project was to increase the [...]]]></description>
			<content:encoded><![CDATA[<p><span id="more-684"></span><span style="font-family: Geneva, Arial, Helvetica, sans-serif; line-height: 22px;"><strong>The Client: </strong>Easy Go Education (Istanbul, Turkey)</span></p>
<p style="font-family: Geneva, Arial, Helvetica, sans-serif; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 22px;"><strong>URL: </strong><a href="http://www.oynayarakogren.com" target="_blank">www.oynayarakogren.com</a></p>
<p style="font-family: Geneva, Arial, Helvetica, sans-serif; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 22px;"><strong>Project Brief: </strong></p>
<p style="font-family: Geneva, Arial, Helvetica, sans-serif; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 22px;">Although obtaining a high visitor count to the existing e-commerce website, our client was not successfully converting site visitors to sales of their flagship product, &#8220;What Is This?&#8221;™, an educational English language game for children.</p>
<p style="font-family: Geneva, Arial, Helvetica, sans-serif; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 22px;">Our brief for the project was to increase the conversion rate of site visitors to sales, build their marketing database from the ground up and expedite the sales of their educational gaming product. In consultation with Easy Go Education&#8217;s marketing department, we devised a website registration system whereby a user goes into a chance draw to win one of four games given away every month for a period of three months.</p>
<p style="font-family: Geneva, Arial, Helvetica, sans-serif; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 22px;">If the registrant is located within Turkey and has not yet purchased the game, they are sent a unique discount code by SMS to their cell phone, this discount code is valid for a period of 7 days from registration date and redeemable at the point of checkout, thus increasing the user&#8217;s urgency to order online.</p>
<p style="font-family: Geneva, Arial, Helvetica, sans-serif; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 22px;">Easy Go Education are now able to track the demographic of site visitors and purchasers, thus enabling more intelligent marketing campaigns targeted at known successful demographic groups into the future.</p>
<p style="font-family: Geneva, Arial, Helvetica, sans-serif; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 22px;"><strong>Technologies: </strong></p>
<ul>
<li>ASP</li>
<li>PHP</li>
<li>Ajax with JSONP data type</li>
<li>MYSQL</li>
<li>Java Script</li>
<li>jQuery</li>
<li>XHTML</li>
<li>CSS</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.kromosome.net/client-website/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Client Website</title>
		<link>http://www.kromosome.net/new-project-and-client-5</link>
		<comments>http://www.kromosome.net/new-project-and-client-5#comments</comments>
		<pubDate>Thu, 03 Dec 2009 14:17:02 +0000</pubDate>
		<dc:creator>Mat Garland</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Portofolio]]></category>

		<guid isPermaLink="false">http://www.kromosome.net/?p=585</guid>
		<description><![CDATA[The Client: Kromosome Pty Ltd URL: www.kromosome.com.au/wholesale Project Description: To develop a website for an Australian fashion brand&#8217;s b2b wholesale customers facilitating online commerce.]]></description>
			<content:encoded><![CDATA[<p><span id="more-585"></span>
<p style="font-family: Geneva, Arial, Helvetica, sans-serif; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 22px;"><strong>The Client:</strong> Kromosome Pty Ltd</p>
<p style="font-family: Geneva, Arial, Helvetica, sans-serif; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 22px;"><strong>URL: </strong><span style="color: #000000;"><a href="http://www.kromosome.com.au/wholesale" target="_blank">www.kromosome.com.au/wholesale</a></span></p>
<p style="font-family: Geneva, Arial, Helvetica, sans-serif; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 22px;"><strong>Project Description:</strong> To develop a website for an Australian fashion brand&#8217;s b2b wholesale customers facilitating online commerce.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kromosome.net/new-project-and-client-5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Client Website</title>
		<link>http://www.kromosome.net/new-project-and-client-1</link>
		<comments>http://www.kromosome.net/new-project-and-client-1#comments</comments>
		<pubDate>Mon, 30 Nov 2009 22:29:47 +0000</pubDate>
		<dc:creator>Mat Garland</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Portofolio]]></category>
		<category><![CDATA[kromosome client portfolio]]></category>

		<guid isPermaLink="false">http://www.kromosome.net/?p=467</guid>
		<description><![CDATA[Client: Birnur Garland URL: www.birnurgarland.com Brief: To create a portfolio site for a fashion designer to display her recent works. Technologies: PHP XHTML; CSS; Javascript / jQuery; AJAX / JSONP;]]></description>
			<content:encoded><![CDATA[<p><span id="more-467"></span><strong><span style="color: #808080">Client:</span></strong><strong> <span style="color: #000000"><span style="font-weight: normal">Birnur Garland</span></span></strong></p>
<p><span style="color: #000000"><span style="font-weight: normal"><span style="color: #808080"><strong>URL: </strong><span style="color: #000000"><a href="http://www.birnurgarland.com" target="_blank">www.birnurgarland.com</a></span><span style="color: #000000"> </span></span></span></span></p>
<p style="text-align: left"><span style="color: #808080"><span style="color: #808080"><strong>Brief: <span style="color: #000000"><span style="font-weight: normal">To create a </span></span></strong><span style="color: #000000"> portfolio site for a fashion designer to display her recent works.</span></span></span></p>
<p><strong><span style="color: #808080">Technologies:</span></strong></p>
<ul>
<li><span style="color: #000000">PHP</span></li>
<li><span style="color: #000000">XHTML;</span></li>
<li><span style="color: #000000">CSS;</span></li>
<li><span style="color: #000000">Javascript / jQuery;</span></li>
<li><span style="color: #000000">AJAX / JSONP;</span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.kromosome.net/new-project-and-client-1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Client Website</title>
		<link>http://www.kromosome.net/new-project-and-client-2-2</link>
		<comments>http://www.kromosome.net/new-project-and-client-2-2#comments</comments>
		<pubDate>Fri, 20 Nov 2009 00:05:35 +0000</pubDate>
		<dc:creator>Mat Garland</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Portofolio]]></category>
		<category><![CDATA[kromosome client portfolio]]></category>

		<guid isPermaLink="false">http://themekrones.com/portofolio/iamilkay/picco/wp/?p=458</guid>
		<description><![CDATA[The Client: Hopkins Panels Pty Ltd URL: www.hopkinspanels.com.au Project Description: To develop a website and an online quotation system for a motor vehicle smash repairer based in South Geelong, Victoria. Ensure a high SEO ranking in Google for selected keywords. With our SEO expertise we were able to obtain coveted positions in Google as per [...]]]></description>
			<content:encoded><![CDATA[<p><span id="more-458"></span>
<p style="font-family: Geneva, Arial, Helvetica, sans-serif; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 22px;"><strong>The Client:</strong> Hopkins Panels Pty Ltd</p>
<p style="font-family: Geneva, Arial, Helvetica, sans-serif; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 22px;"><strong>URL: </strong><span style="color: #000000;"><a href="http://www.hopkinspanels.com.au" target="_blank">www.hopkinspanels.com.au</a></span></p>
<p style="font-family: Geneva, Arial, Helvetica, sans-serif; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 22px;"><strong>Project Description:</strong> To develop a website and an online quotation system for a motor vehicle smash repairer based in South Geelong, Victoria. Ensure a high SEO ranking in Google for selected keywords.</p>
<p>With our SEO expertise we were able to obtain coveted positions in Google as per our client&#8217;s request. Below are the keywords and ranking that we achieved for our client:</p>
<ul>
<li>South Geelong VACC repair &#8211; position # 1</li>
<li>South Geelong panel repair -position # 2</li>
<li>South Geelong panel shop &#8211; position # 1</li>
<li>South Geelong spray painters &#8211; position # 1</li>
<li>South Geelong panel beaters -position # 5</li>
</ul>
<p></p>
<p style="font-family: Geneva, Arial, Helvetica, sans-serif; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 22px;"><strong>Client Testimonial:</strong> <em><strong>“</strong>Kromosome&#8217;s affordable website development has enabled us to expand our service offering to our customers via the web, something that we had not previously been able to do. Thank you very much Kromosome!<strong>” &#8212; Peter Garland, Managing Director</strong></em></p>

<a href='http://www.kromosome.net/new-project-and-client-2-2/google_seo5' title='google_seo5'><img width="150" height="150" src="http://www.kromosome.net/wp-content/uploads/2009/11/google_seo5-150x150.png" class="attachment-thumbnail" alt="google_seo5" title="google_seo5" /></a>
<a href='http://www.kromosome.net/new-project-and-client-2-2/google_seo4' title='google_seo4'><img width="150" height="150" src="http://www.kromosome.net/wp-content/uploads/2009/11/google_seo4-150x150.png" class="attachment-thumbnail" alt="google_seo4" title="google_seo4" /></a>
<a href='http://www.kromosome.net/new-project-and-client-2-2/google_seo3' title='google_seo3'><img width="150" height="150" src="http://www.kromosome.net/wp-content/uploads/2009/11/google_seo3-150x150.png" class="attachment-thumbnail" alt="google_seo3" title="google_seo3" /></a>
<a href='http://www.kromosome.net/new-project-and-client-2-2/google_seo2' title='google_seo2'><img width="150" height="150" src="http://www.kromosome.net/wp-content/uploads/2009/11/google_seo2-150x150.png" class="attachment-thumbnail" alt="google_seo2" title="google_seo2" /></a>
<a href='http://www.kromosome.net/new-project-and-client-2-2/google_seo' title='google_seo'><img width="150" height="150" src="http://www.kromosome.net/wp-content/uploads/2009/11/google_seo-150x150.png" class="attachment-thumbnail" alt="google_seo" title="google_seo" /></a>

<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kromosome.net/new-project-and-client-2-2/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Client Website</title>
		<link>http://www.kromosome.net/new-project-and-client-3</link>
		<comments>http://www.kromosome.net/new-project-and-client-3#comments</comments>
		<pubDate>Fri, 20 Nov 2009 00:00:49 +0000</pubDate>
		<dc:creator>Mat Garland</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Portofolio]]></category>
		<category><![CDATA[kromosome client portfolio]]></category>

		<guid isPermaLink="false">http://themekrones.com/portofolio/iamilkay/picco/wp/?p=452</guid>
		<description><![CDATA[The Client: Kromosome Pty Ltd URL: www.kromosome.com.au Project Description: To develop a website for an Australian fashion brand that communicated the brand&#8217;s message effectively to it&#8217;s intended audience. Implementation: To convey the racy appeal that Kromosome&#8217;s products offered to the marketplace, in consultation with the client, it was decided that a Flash based site would [...]]]></description>
			<content:encoded><![CDATA[<p><span id="more-452"></span>
<p style="font-family: Geneva, Arial, Helvetica, sans-serif; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 22px;"><strong>The Client:</strong> Kromosome Pty Ltd</p>
<p style="font-family: Geneva, Arial, Helvetica, sans-serif; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 22px;"><strong>URL: </strong><span style="color: #000000;"><a href="http://www.kromosome.com.au" target="_blank">www.kromosome.com.au</a></span></p>
<p style="font-family: Geneva, Arial, Helvetica, sans-serif; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 22px;"><strong>Project Description:</strong> To develop a website for an Australian fashion brand that communicated the brand&#8217;s message effectively to it&#8217;s intended audience.</p>
<p style="font-family: Geneva, Arial, Helvetica, sans-serif; margin-top: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; line-height: 22px;"><strong>Implementation:</strong> To convey the racy appeal that Kromosome&#8217;s products offered to the marketplace, in consultation with the client, it was decided that a Flash based site would best serve Kromosome&#8217;s requirements, allowing images and audio to help the brand stand out from others..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kromosome.net/new-project-and-client-3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

