//-----------------------------------------------------------------------------------//
// Esposhop
//-----------------------------------------------------------------------------------//
// Version: 1.0
//
// Generic script for cookie based eShop.
//
// Written By: T.M.Williams
// Date      : 15 August 2006
//-----------------------------------------------------------------------------------//


//-----------------------------------------------------------------------------------//
// OnLoad Function
//-----------------------------------------------------------------------------------//

function addEvent(obj, evType, fn)
{
  if (obj.addEventListener)
  {
    obj.addEventListener(evType, fn, false); return true;
  }
  else if (obj.attachEvent)
  {
    var r = obj.attachEvent("on"+evType, fn);
    return r;
  }
  else
  {
    return false;
  }
}
addEvent(window, 'load', onLoadAction);
function onLoadAction()
{
  refreshBasketView();
}

//-----------------------------------------------------------------------------------//
// Page Object Functions
//-----------------------------------------------------------------------------------//

function getObjectByID(id,o)
{
  var c,el,els,f,m,n;
  if(!o)o=document;
  if(o.getElementById) el=o.getElementById(id);
  else
    if(o.layers) c=o.layers;
    else
      if(o.all) el=o.all[id];
  if(el) return el;
  if(o.id==id || o.name==id) return o;
  if(o.childNodes) c=o.childNodes;
  if(c)
    for(n=0; n<c.length; n++)
    {
      el=getObjectByID(id,c[n]);
      if(el) return el;
    }
  f=o.forms;
  if(f)
    for(n=0; n<f.length; n++)
    {
      els=f[n].elements;
      for(m=0; m<els.length; m++)
      {
        el=getObjectByID(id,els[n]);
        if(el) return el;
      }
    }
  return null;
}

function getStyleClass (className) {
	for (var s = 0; s < document.styleSheets.length; s++)
	{
		if(document.styleSheets[s].rules)
		{
			for (var r = 0; r < document.styleSheets[s].rules.length; r++)
			{
				if (document.styleSheets[s].rules[r].selectorText == '.' + className)
				{
					return document.styleSheets[s].rules[r];
				}
			}
		}
		else if(document.styleSheets[s].cssRules)
		{
			for (var r = 0; r < document.styleSheets[s].cssRules.length; r++)
			{
				if (document.styleSheets[s].cssRules[r].selectorText == '.' + className)
					return document.styleSheets[s].cssRules[r];
			}
		}
	}

	return null;
}

//-----------------------------------------------------------------------------------//
// Parameters
//-----------------------------------------------------------------------------------//

var paramName  = new Array();
var paramValue = new Array();
var paramCount = 0;

function getParams()
{
  var temp=window.location.href.split('?');
  if (temp[1]==null)
  {
    paramCount=0;
    return true;
  }
  var URLparameters=temp[1].split('&');
  paramCount=URLparameters.length;
  for(n=0;n<paramCount;n++)
  {
    temp=URLparameters[n].split('=');
    paramName[n]=temp[0];
    paramValue[n]=temp[1];
  }
  return true;
}

function displayValue(pin)
{
  var pcount;var pout="";
  for(pcount=0;pcount<pin.length;pcount++)
  {
    if (pin.charAt(pcount)=="+") pout+=" ";
    else
    {
      if (pin.charAt(pcount)=="%" && (pcount+2)<pin.length)
      {
        if (pin.charAt(pcount+1)=="2" && pin.charAt(pcount+2)=="0")
        {
          pout+=" ";
          pcount+=2;
        }
        else
        if (pin.charAt(pcount+1)=="2" && pin.charAt(pcount+2)=="1")
        {
          pout+="!";
          pcount+=2;
        }
        else
        if (pin.charAt(pcount+1)=="3" && pin.charAt(pcount+2)=="C")
        {
          pout+="<";
          pcount+=2;
        }
        else
        if (pin.charAt(pcount+1)=="3" && pin.charAt(pcount+2)=="E")
        {
          pout+=">";
          pcount+=2;
        }
        else
        if (pin.charAt(pcount+1)=="7" && pin.charAt(pcount+2)=="B")
        {
          pout+="{";
          pcount+=2;
        }
        else
        if (pin.charAt(pcount+1)=="7" && pin.charAt(pcount+2)=="D")
        {
          pout+="}";
          pcount+=2;
        }
        else
        if (pin.charAt(pcount+1)=="5" && pin.charAt(pcount+2)=="B")
        {
          pout+="[";
          pcount+=2;
        }
        else
        if (pin.charAt(pcount+1)=="5" && pin.charAt(pcount+2)=="D")
        {
          pout+="]";
          pcount+=2;
        }
        else
        if (pin.charAt(pcount+1)=="2" && pin.charAt(pcount+2)=="F")
        {
          pout+="/";
          pcount+=2;
        }
        else
        if (pin.charAt(pcount+1)=="5" && pin.charAt(pcount+2)=="C")
        {
          pout+="\\";
          pcount+=2;
        }
        else
        if (pin.charAt(pcount+1)=="3" && pin.charAt(pcount+2)=="F")
        {
          pout+="?";
          pcount+=2;
        }
        else
        if (pin.charAt(pcount+1)=="2" && pin.charAt(pcount+2)=="6")
        {
          pout+="&";
          pcount+=2;
        }
        else
        if (pin.charAt(pcount+1)=="2" && pin.charAt(pcount+2)=="B")
        {
          pout+="+";
          pcount+=2;
        }
        else
        if (pin.charAt(pcount+1)=="0" && pin.charAt(pcount+2)=="D")
        {
          pout+="";
          pcount+=2;
        }
        else
        if (pin.charAt(pcount+1)=="0" && pin.charAt(pcount+2)=="A")
        {
          pout+="<BR>";
          pcount+=2;
        }
	  else
        {
          pout+"%";
        }
      }
      else
        pout+=pin.charAt(pcount);
    }
  }
  return pout;
}

function getParamValue(pname)
{
  var pcount;
  for (pcount=0;pcount<paramCount;pcount++)
  {
    if (paramName[pcount]==pname) return(displayValue(paramValue[pcount]));
  }
  return "";
}

function getParamValueRaw(pname)
{
  var pcount;
  for (pcount=0;pcount<paramCount;pcount++)
  {
    if (paramName[pcount]==pname) return(paramValue[pcount]);
  }
  return "";
}

function checkParamValue(pname,pvalue)
{
  var pcount;
  for (pcount=0;pcount<paramCount;pcount++)
  {
    if (paramName[pcount]==pname && paramValue[pcount]==pvalue) return true;
  }
  return false;
}

//-----------------------------------------------------------------------------------//
// Cookies
//-----------------------------------------------------------------------------------//

/*
   name - name of the cookie
   value - value of the cookie
   [expires] - expiration date of the cookie
     (defaults to end of current session)
   [path] - path for which the cookie is valid
     (defaults to path of calling document)
   [domain] - domain for which the cookie is valid
     (defaults to domain of calling document)
   [secure] - Boolean value indicating if the cookie transmission requires
     a secure transmission
   * an argument defaults when it is assigned null as a placeholder
   * a null placeholder is not required for trailing omitted arguments
*/

function setCookie(name, value, expires, path, domain, secure)
{
  var curCookie = name + "=" + escape(value) +
      ((expires) ? "; expires=" + expires.toGMTString() : "") +
      ((path) ? "; path=" + path : "") +
      ((domain) ? "; domain=" + domain : "") +
      ((secure) ? "; secure" : "");
  document.cookie = curCookie;
}


/*
  name - name of the desired cookie
  return string containing value of specified cookie or null
  if cookie does not exist
*/

function getCookie(name)
{
  var dc = document.cookie;
  var prefix = name + "=";
  var begin = dc.indexOf("; " + prefix);
  if (begin == -1)
  {
    begin = dc.indexOf(prefix);
    if (begin != 0) return null;
  }
  else
  {
    begin += 2;
  }
  var end = document.cookie.indexOf(";", begin);
  if (end == -1)
  {
    end = dc.length;
  }
  return unescape(dc.substring(begin + prefix.length, end));
}


/*
   name - name of the cookie
   [path] - path of the cookie (must be same as path used to create cookie)
   [domain] - domain of the cookie (must be same as domain used to
     create cookie)
   path and domain default if assigned null or omitted if no explicit
     argument proceeds
*/

function deleteCookie(name, path, domain)
{
  if (getCookie(name))
  {
    document.cookie = name + "=" +
    ((path) ? "; path=" + path : "") +
    ((domain) ? "; domain=" + domain : "") +
    "; expires=Thu, 01-Jan-70 00:00:01 GMT";
  }
}

// date - any instance of the Date object
// * hand all instances of the Date object to this function for "repairs"
function fixDate(date)
{
  var base = new Date(0);
  var skew = base.getTime();
  if (skew > 0)
    date.setTime(date.getTime() - skew);
}


//-----------------------------------------------------------------------------------//
// getNumber Function (Including decimal places)
//-----------------------------------------------------------------------------------//

function getNumber(pText,pDP)
{
  var ValidChars = "0123456789";
  var Char;
  var dp = 0;
  var i = 0;
  var newText = "";
  var valid = true;

  pText = ""+pText;
  if (!pDP)
  {
    pDP=0;
  }

  for (i = 0; ((i < pText.length) && valid); i++)
  {
    Char = pText.charAt(i);
    if (ValidChars.indexOf(Char) == -1)
    {
      if (Char=='.') break;
      else           valid = false;
    }
    else
    {
      if ((Char!='0') || (newText!="")) // Remove leading zeros
      {
        newText = newText + Char;
      }
    }
  }

  // Ensure empty string and DP only have a leading zero
  if (newText=="")
  {
    newText = "0";
  }

  i++; // Move i to point after decimal place
  if (valid && pDP>0)
  {
    newText = newText + "."; // Add decimal place

    for (dp=0; ((dp<pDP) && valid); dp++)
    {
      if ((i+dp)<pText.length)
      {
        Char = pText.charAt(i+dp);
        if (ValidChars.indexOf(Char) == -1)
        {
          valid = false;
        }
        else
        {
          newText = newText + Char;
        }
      }
      else
      {
        newText = newText + "0";
      }
    }
  }

  // Round-up if required
  //if (valid && ((i+dp)<pText.length))
  //{
 // Char = pText.charAt(i+dp);
   // if (ValidChars.indexOf(Char) == -1)
   // {
   //   valid = false;
  //  }
  //  else
 //   {
 //     if (eval(""+Char)>4)
 //     {
 //       newText = getNumber(eval(newText) + (1*Math.pow(10,(0-pDP))), pDP);
 //     }
 //   }
 // }

  // Ensure invalid strings return a full "0.00" style format
  if (!valid)
  {
    if (pDP>0)
    {
      newText = "0.";
      for (dp=1;dp<pDP;dp++)
      {
        newText = newText + "0";
      }
    }
    {
      newText = "0";
    }
  }

  return newText;
}


//-----------------------------------------------------------------------------------//
// eShop Cookie Code
//-----------------------------------------------------------------------------------//

function setEShopCookie()
{
  var i = 0;
  var totalPrice = 0;
  var totalQuantity = 0;
  var inBasket = false;
  var cookie = "";

  while (invCode[i])
  {
    // Set values
    if (invQuantity[i]>0)
    {
      if (inBasket)
      {
        cookie = cookie+"|"+invCode[i]+"="+invQuantity[i];
      }
      else
      {
        inBasket = true;
        cookie = cookie+invCode[i]+"="+invQuantity[i];
      }
    }

    i++;
  }
  if (inBasket)
  {
    setCookie(CookieName,cookie,now);
  }
  else
  {
    deleteCookie(CookieName);
  }

  refreshBasketView();
}
function getEShopCookie()
{
  var cookieString = getCookie(CookieName);
  var temp;
  var i;

  if (cookieString)
  {
    var cookieParam=cookieString.split('|');
    paramCount=cookieParam.length;
    for(n=0;n<paramCount;n++)
    {
      temp=cookieParam[n].split('=');
      i=0;
      while(invCode[i] && invCode[i]!=temp[0])
      {
        i++;
      }
      if (invCode[i])
      {
        invQuantity[i]=temp[1];
      }
    }
  }
}

//-----------------------------------------------------------------------------------//
// CR Shop Display Code
//-----------------------------------------------------------------------------------//
var CookieName = "CRShopV1.0";

var invItemsMAX    = 300;
var invSectionsMAX = 30;
var faqMAX         = 50;
var gGlobalShippingCost = "0.00";

var invSectionName     = new Array(invSectionsMAX);
var invSectionPosition = new Array(invSectionsMAX);
var invSectionImage    = new Array(invSectionsMAX);
var invSectionDesc     = new Array(invSectionsMAX);
var invSectionExpand   = new Array(invSectionsMAX);

var invCode     = new Array(invItemsMAX);
var invName     = new Array(invItemsMAX);
var invPrice    = new Array(invItemsMAX);
var invVAT      = new Array(invItemsMAX);
var invShipFirst= new Array(invItemsMAX);
var invShipOther= new Array(invItemsMAX);
var invImage    = new Array(invItemsMAX);
var invDesc     = new Array(invItemsMAX);
var invMoreDesc = new Array(invItemsMAX);
var invQuantity = new Array(invItemsMAX);

var faqQuestion = new Array(faqMAX);
var faqAnswer   = new Array(faqMAX);

var gTotalInvItems    = 0;
var gTotalInvSections = 0;
var gSection          = 0;
var gFirstItem        = 0;
var gItemsPerPage     = 6;
var gSectionsPerPage  = 8;
var gBasketLines      = 0;

function addBasketHideCSS()
{
  document.write("<style type=\"text/css\"><!--");
  for (var i=0; (invCode[i]); i++) {
    document.write(".basketElement"+i+" {display:list-item}");
  }
  document.write("--></style>");
}

function addDescriptionHideCSS()
{
  document.write("<style type=\"text/css\"><!--");
  for (var i=0; (invCode[i]); i++) {
    document.write(".descriptionElement"+i+" {display:none; position:absolute; z-index:100; top:70; left:170;}");
  }
  document.write("--></style>");
}

function addFAQHideCSS()
{
  document.write("<style type=\"text/css\"><!--");
  for (var f=0; (faqQuestion[f]); f++) {
    document.write(".faqAnswer"+f+" {display:none;}");
  }
  document.write("--></style>");
}

function addLookAndFeelCSS()
{
  document.write("<style type=\"text/css\"><!--");
  document.write(" input {background-color:"+COLOUR_BUTTON+"; font-size:8pt; font-weight:400;}");
  document.write(" body  {background-color:"+COLOUR_MAIN_BACKGROUND_SIDES+"; background-image:url('"+COLOUR_MAIN_BGIMAGE+"'); font-family:\"Palatino\" \"Arial\" \"Verdana\"; font-size:10pt; font-weight:400; text-align:justify; margin:0;}");
  document.write(" td    {font-size:10pt; font-weight:400; text-align:justify;}");
  document.write(" .centered {margin-left: auto; margin-right: auto; text-align:center;}");
  document.write(" .pointerhand {cursor: pointer;}");
  document.write("--></style>");
}

function setInventory( pGlobalShippingCost, pInvList )
{
  //List Element example: "X600-101-22","Alpha","120.00","a.jpg","The alpha male"
  var i,s;

  gGlobalShippingCost = getNumber(pGlobalShippingCost,2);
  gTotalInvItems = 0;

  for (s=0; (pInvList[s*4]); s++) {
	var S=(s*4);
    invSectionName[s]     = pInvList[S];
    invSectionImage[s]    = pInvList[S+1];
    invSectionDesc[s]     = pInvList[S+2];
    invSectionPosition[s] = gTotalInvItems;
    S+=3;
    for (i=0; (pInvList[s*4+3][i*9]); i++) {
	  var I=(i*9);
	  var P=invSectionPosition[s]+i;
      invCode         [P] = pInvList[S][I];
      invName         [P] = pInvList[S][I+1];
      invPrice        [P] = pInvList[S][I+2];
      invVAT          [P] = pInvList[S][I+3];
      invShipFirst    [P] = pInvList[S][I+4];
      invShipOther    [P] = pInvList[S][I+5];
      invImage        [P] = pInvList[S][I+6];
      invDesc         [P] = pInvList[S][I+7];
      invMoreDesc     [P] = pInvList[S][I+8];
      invQuantity     [P] = 0;
      invSectionExpand[P] = false;
    }
    gTotalInvItems = gTotalInvItems + i;
  }
  
  invSectionPosition[s] = gTotalInvItems;
  gTotalInvSections = s;
}


function setFAQ( pFAQList )
{
  for (var f=0; (pFAQList[f*2]); f++) {
    faqQuestion[f] = pFAQList[f*2];
    faqAnswer[f]   = pFAQList[f*2+1];
  }
}


function showInventorySections(pPage,pItemsPage,pBanner)
{
  getParams();
  if (getParamValue("firstitem")!="") gFirstItem=eval(getParamValue("firstitem"));
  if (pBanner) showBannerMAX(pBanner);

  document.write("<table width=100% cellpadding=0 cellspacing=0 align=center>");
  for (s=gFirstItem; (s<(gFirstItem+gSectionsPerPage) && s<gTotalInvSections); s+=4) {
    document.write("<tr><td colspan=3>");
    if      (s+3<gTotalInvSections) showInventorySectionRow(pItemsPage,s,s+1,s+2,s+3);
    else if (s+2<gTotalInvSections) showInventorySectionRow(pItemsPage,s,s+1,s+2);
    else if (s+1<gTotalInvSections) showInventorySectionRow(pItemsPage,s,s+1);
    else                            showInventorySectionRow(pItemsPage,s);
    document.write("</td></tr>");
  }
  document.write("<tr><td class=centered>");
  if ((gFirstItem-gSectionsPerPage)<0) {
    if (gFirstItem)  {
      document.write("<a style=\"text-decoration:none\" href=\""+pPage+"?firstitem=0&itemsperpage="+gSectionsPerPage+"\">");
	  document.write("<image src=\"images/prev.gif\" border=0></A>");
    }
  } else {
    document.write("<a style=\"text-decoration:none\" href=\""+pPage+"?firstitem="+(gFirstItem-gSectionsPerPage)+"&itemsperpage="+gSectionsPerPage+"\">");
	document.write("<image src=\"images/prev.gif\" border=0></A>");
  }
  document.write("</td><td width=100%>&nbsp;</td><td>");
  if ((gFirstItem+gSectionsPerPage)<=gTotalInvSections) {
    document.write("<a style=\"text-decoration:none\" href=\""+pPage+"?firstitem="+(gFirstItem+gSectionsPerPage)+"&itemsperpage="+gSectionsPerPage+"\">");
	document.write("<image src=\"images/next.gif\" border=0></A>");
  }
  document.write("</td></tr></table>");
}


function showInventorySectionRow( pItemsPage, pInvSection1, pInvSection2, pInvSection3, pInvSection4 )
{
  document.write("<table class=centered width=100% height=100% cellspacing=0 cellpadding=0 border=0>");
  document.write(" <tr>");
//  document.write("  <td width=11></td>");
  document.write("  <td width=25% height=100%>");
  showInventorySection(pInvSection1, pItemsPage);
  document.write("  </td>");
//  document.write("  <td width=2></td>");
  document.write("  <td width=25% height=100%>");
  showInventorySection(pInvSection2, pItemsPage);
  document.write("  </td>");
//  document.write("  <td width=2></td>");
  document.write("  <td width=25% height=100%>");
  showInventorySection(pInvSection3, pItemsPage);
  document.write("  </td>");
//  document.write("  <td width=2></td>");
  document.write("  <td width=25% height=100%>");
  showInventorySection(pInvSection4, pItemsPage);
  document.write("  </td>");
//  document.write("  <td width=11></td>");
  document.write(" </tr>");
  document.write("</table>");
}
function showInventorySection( pInvSection, pItemsPage )
{
  if (invName[pInvSection])
  {
    document.write("<table class=centered style=\"border:solid; border-width:1; border-color:"+COLOUR_SECTION_EDGE+";\" width=100% height=100% cellspacing=0 cellpadding=5>");
    document.write(" <tr><td width=100% style=\""+STYLE_SECTION_TITLE+" background-color:"+COLOUR_SECTION_BANNER+"; background-image:url('"+COLOUR_SECTION_BANNER_BGIMAGE+"');\">");
    document.write(invSectionName[pInvSection]);
    document.write(" </td></tr>");
    document.write(" <tr><td width=33% bgcolor="+COLOUR_SECTION_BACKGROUND+" class=centered>");
    document.write("  <table width=160 class=centered><tr><td width=160><center><A HREF=\""+pItemsPage+"?section="+pInvSection+"\"><image src=\"images/"+invSectionImage[pInvSection]+"\" width=160 height=120 border=0></A><BR><input class=\"pointerhand\" type=button value=\"View Section\" onclick=\"javascript:window.location='"+pItemsPage+"?section="+pInvSection+"';\"></center></td></tr></table>");
    document.write(" </td></tr>");
    document.write(" <tr height=100%><td width=33% height=100% bgcolor="+COLOUR_SECTION_BACKGROUND+" valign=top>");
    document.write("  <table width=100% height=100%><tr height=100%><td height=100%>"+invSectionDesc[pInvSection]+"</td></tr></table>");
    document.write(" </td></tr>");
    document.write("</table>");
  }
}


function showInventoryItems(pPage)
{
  getParams();
  if (getParamValue("section")!="") gSection=eval(getParamValue("section"));
  if (getParamValue("firstitem")!="") gFirstItem=eval(getParamValue("firstitem"));

  if (gFirstItem<invSectionPosition[gSection] || gFirstItem>invSectionPosition[gSection+1])
  {
    gFirstItem = invSectionPosition[gSection];
  }

  document.write("<BR>");
  showBanner("SECTION: "+invSectionName[gSection]);
  document.write("<BR>");

  document.write("<table width=90% cellpadding=0 cellspacing=0 align=center>");
  for (i=gFirstItem; (i<(gFirstItem+gItemsPerPage) && i<invSectionPosition[gSection+1]); i+=3) {
    document.write("<tr><td colspan=3>");
    if      (i+2<invSectionPosition[gSection+1]) showInventoryItemTriple(i,i+1,i+2);
    else if (i+1<invSectionPosition[gSection+1]) showInventoryItemTriple(i,i+1);
    else                                         showInventoryItemTriple(i);
    document.write("</td></tr>");
  }
  document.write("<tr><td class=centered>");
  if (gFirstItem-gItemsPerPage<invSectionPosition[gSection]) {
    if (gFirstItem!=invSectionPosition[gSection]) {
      document.write("<a style=\"text-decoration:none\" href=\""+pPage+"?firstitem="+invSectionPosition[gSection]+"&section="+gSection+"&itemsperpage="+gItemsPerPage+"\"><image src=\"images/prev.gif\" border=0></A>");
    }
  } else {
    document.write("<a style=\"text-decoration:none\" href=\""+pPage+"?firstitem="+(gFirstItem-gItemsPerPage)+"&section="+gSection+"&itemsperpage="+gItemsPerPage+"\"><image src=\"images/prev.gif\" border=0></A>");
  }
  document.write("</td><td width=100%>&nbsp;</td><td>");
  if ((gFirstItem+gItemsPerPage)<=invSectionPosition[gSection+1]) {
    document.write("<a style=\"text-decoration:none\" href=\""+pPage+"?firstitem="+(gFirstItem+gItemsPerPage)+"&section="+gSection+"&itemsperpage="+gItemsPerPage+"\"><image src=\"images/next.gif\" border=0></A>");
  }
  document.write("</td></tr></table>");
}


function showInventoryItemTriple( pInvItem1, pInvItem2, pInvItem3 )
{
  document.write("<table class=centered width=99% cellspacing=2 cellpadding=0 border=0>");
  document.write(" <tr>");
//  document.write("  <td width=11></td>");
  document.write("  <td width=33% height=100%>");
  showInventoryItem(pInvItem1);
  document.write("  </td>");
//  document.write("  <td width=1></td>");
  document.write("  <td width=33% height=100%>");
  showInventoryItem(pInvItem2);
  document.write("  </td>");
//  document.write("  <td width=1></td>");
  document.write("  <td width=33% height=100%>");
  showInventoryItem(pInvItem3);
  document.write("  </td>");
//  document.write("  <td width=11></td>");
  document.write(" </tr>");
  document.write("</table>");
}


function showInventoryItem( pInvItem )
{
  if (invCode[pInvItem])
  {
    if (invMoreDesc[pInvItem]) {
        document.write("<div class=\"descriptionElement"+pInvItem+"\">");
        document.write("<table class=centered style=\"border:solid; border-width:1; border-color:"+COLOUR_ITEM_MORE_EDGE+"; width:400\" cellspacing=0 cellpadding=5>");
        document.write(" <tr><td bgcolor="+COLOUR_ITEM_MORE_BANNER+" style=\""+STYLE_ITEM_TITLE+"\">");
        document.write(invName[pInvItem]);
        document.write(" </td></tr>");
        document.write(" <tr><td bgcolor="+COLOUR_ITEM_MORE_BACKGROUND+" class=centered>");
        document.write("  <table width=160 class=centered><tr><td width=160><center><image src=\"images/"+invImage[pInvItem]+"\" width=160 height=120><BR><font size=-2>Product Code: "+invCode[pInvItem]+"</font><BR>&pound;"+getNumber(invPrice[pInvItem],2)+"<BR><input class=\"pointerhand\" type=button value=\"Add To Basket\" onclick=\"javascript:invQuantity["+pInvItem+"]++;setEShopCookie();\"></center></td></tr></table>");
        document.write(" </td></tr>");
        document.write(" <tr height=100%><td height=100% bgcolor="+COLOUR_ITEM_MORE_BACKGROUND+" valign=top>");
        document.write("  <table height=100%><tr height=100%><td height=100%>"+invMoreDesc[pInvItem]+"</td></tr></table>");
        document.write(" </table>");
        document.write(" <table class=centered style=\"border:solid; border-width:1; border-color:"+COLOUR_ITEM_MORE_EDGE+"; width:400\" cellspacing=0 cellpadding=0>");
        document.write("  <tr style=\"width:100%\"><td style=\"width:100%\"><input class=\"pointerhand\" type=button value=\"CLOSE WINDOW\" style=\"width:100%\" onclick=\"javascript:getStyleClass('descriptionElement"+pInvItem+"').style.display = 'none';\"></td></tr>");
        document.write(" </table>");
      document.write("</div>");
      document.write("<table class=centered style=\"border:solid; border-width:1; border-color:"+COLOUR_ITEM_EDGE+";\" width=100% height=100% cellspacing=0 cellpadding=5>");
      document.write(" <tr><td width=100% style=\""+STYLE_ITEM_TITLE+" background-color:"+COLOUR_ITEM_BANNER+"; background-image:url('"+COLOUR_ITEM_BANNER_BGIMAGE+"');\">");
      document.write(invName[pInvItem]);
      document.write(" </td></tr>");
      document.write(" <tr><td bgcolor="+COLOUR_ITEM_BACKGROUND+" class=centered>");
      document.write("  <table width=160 class=centered><tr><td width=160><center><image src=\"images/"+invImage[pInvItem]+"\" width=160 height=120 onclick=\"getStyleClass('descriptionElement"+pInvItem+"').style.display = 'block';\"><BR><font size=-2>Product Code: "+invCode[pInvItem]+"</font><BR>&pound;"+getNumber(invPrice[pInvItem],2)+"<BR><input class=\"pointerhand\" type=button value=\"Add To Basket\" onclick=\"javascript:invQuantity["+pInvItem+"]++;setEShopCookie();\"></center></td></tr></table>");
      document.write(" </td></tr>");
      document.write(" <tr height=100%><td height=100% bgcolor="+COLOUR_ITEM_BACKGROUND+" valign=top>");
      document.write("  <table width=100% height=100%><tr height=100%><td height=100%>"+invDesc[pInvItem]+"</td></tr>");
      if (invMoreDesc[pInvItem])
      {
        document.write(" <tr><td style=\"text-align:right;\" onclick=\"getStyleClass('descriptionElement"+pInvItem+"').style.display = 'block';\"><image class=\"pointerhand\" src=\"images/more.jpg\"></td></tr>");
      }
      document.write("  </table>");
      document.write("</table>");
    }
    else
    {
      document.write("<table class=centered style=\"border:solid; border-width:1; border-color:"+COLOUR_ITEM_EDGE+";\" width=100% height=100% cellspacing=0 cellpadding=5>");
      document.write(" <tr><td width=100% style=\""+STYLE_ITEM_TITLE+" background-color:"+COLOUR_ITEM_BANNER+"; background-image:url('"+COLOUR_ITEM_BANNER_BGIMAGE+"');\">");
      document.write(invName[pInvItem]);
      document.write(" </td></tr>");
      document.write(" <tr><td width=33% bgcolor="+COLOUR_ITEM_BACKGROUND+" class=centered>");
      document.write("  <table width=160 class=centered><tr><td width=160><center><image src=\"images/"+invImage[pInvItem]+"\" width=160 height=120><BR><font size=-2>Product Code: "+invCode[pInvItem]+"</font><BR>&pound;"+getNumber(invPrice[pInvItem],2)+"<BR><input class=\"pointerhand\" type=button value=\"Add To Basket\" onclick=\"javascript:invQuantity["+pInvItem+"]++;setEShopCookie();\"></center></td></tr></table>");
      document.write(" </td></tr>");
      document.write(" <tr height=100%><td width=33% height=100% bgcolor="+COLOUR_ITEM_BACKGROUND+" valign=top>");
      document.write("  <table width=100% height=100%><tr height=100%><td height=100%>"+invDesc[pInvItem]+"</td></tr>");
      document.write("  </table>");
      document.write("</table>");
    }
  }
}




function showInventoryBasketMini()
{
  document.write("<form id=minibasket name=minibasket style=\"margin-bottom:0;\">");
  document.write("<table border=1 cellpadding=5 cellspacing=0 width=130 bgcolor="+COLOUR_MINIBASKET_BACKGROUND+">");
  document.write("<tr><td class=centered><table border=0 cellpadding=1 cellspacing=0 class=centered></tr>");
  document.write("<tr><td colspan=2 align=center>VIEW BASKET</td></tr>");
  document.write("<tr><td colspan=2 align=center><A href=\"mybasket.html\"><image src='images/basket.jpg' width=80 height=60 style=\"border:solid; border-color:"+COLOUR_BASKET_BANNER_EDGE+"; border-width:1;\"></A></td></tr>");
  document.write("<tr><td align=left>Items:&nbsp;</td>");
  document.write("<td align=left><input name=totalQuantity type=text readonly style=\"border:none; background-color:"+COLOUR_MINIBASKET_BACKGROUND+"\" size=5></td></tr>");
  document.write("<tr><td align=left>Total:&nbsp;&pound;&nbsp;</td>");
  document.write("<td align=left><input name=totalExpense type=text readonly style=\"border:none; background-color:"+COLOUR_MINIBASKET_BACKGROUND+"\" size=7></td></tr>");
  document.write("</table></td></tr></table></form>");
  refreshBasketView();
}


function showInventoryBasket()
{
  var i;
  gBasketLines = 0;
  
  var STYLE_MIKE0 = "\"border:solid; border-color:"+COLOUR_BASKET_BANNER_EDGE+"; border-width:1; background-color:"+COLOUR_BASKET_EDITABLE+"; text-align:center;\"";
  var STYLE_MIKE1 = "\"border:solid; border-color:"+COLOUR_BASKET_BANNER_EDGE+"; border-width:1; text-align:center\"";
  var STYLE_MIKE2 = "\""+STYLE_BASKET_BANNER+"; background-image:url('"+COLOUR_BASKET_BANNER_BGIMAGE+"'); text-align:right\"";
  var STYLE_MIKE3 = "\"border:none; text-align:right; background-color:"+COLOUR_BASKET_BACKGROUND+";\"";
  
  document.write("<BR>");
  showBanner("CHECKOUT: Confirm Basket Content");
  document.write("<br><form id=basket name=basket>");
  document.write("<table border=0 width=90% cellpadding=1 cellspacing=0 align=center bgcolor="+COLOUR_BASKET_BACKGROUND+">");

  for (i=0; (invCode[i]); i++) {
   var Q = invQuantity[i];
   if (Q) {
      document.write("<tr width=100% class=basketElement"+gBasketLines+">");
	  document.write("<td width=120>"  + invCode[i] + "</td>");
      document.write("<td width=1300>" + invName[i] + "</td>");
      document.write("<td width=100 style=\"text-align:right;\">&pound;" + getNumber(invPrice[i],2) + "&nbsp;</td>");
      document.write("<td width=60><input size=3 type=input value="+Q+" style="+STYLE_MIKE0+" onchange=\"javascript:updateBasket();\" ></td>");
      document.write("<td width=100 style=\"text-align:right; padding-right:10px;\">&pound;");
      document.write("<input type=text readonly style=\"border:none; background-color:"+COLOUR_BASKET_BACKGROUND+"; text-align:right;\" size=7 value=" + getNumber(eval(invPrice[i])*eval(Q),2) + ">");
	  document.write("<input type=hidden value=" + i + "></td></tr>");   // <<< element 2 refers to the database index
	  gBasketLines++;
    }
  }
  
  document.write("<tr height=20><td colspan=9><div align=center><br><br>");
  document.write("<b>Change the order quantities in the boxes above or ..<br>");
  document.write("Click on items in the &quot;Categories Menu&quot; to add more products</b><br></div></td></tr>");
  document.write("<tr height=20><td colspan=9></td></tr>");
  document.write("<tr><td colspan=9><div align=center><input class=\"pointerhand\" type=button value=\"EMPTY&nbsp;BASKET\" onclick=\"javascript:setBasketEmpty();\"></div><br></td></tr></table><br>");
  
  // <INPUR VALUE=... TO BE FILLED IN LATER !
  document.write("<table border=0 width=450 cellpadding=1 cellspacing=0 align=center bgcolor="+COLOUR_BASKET_BACKGROUND+">");
  document.write("<tr><td width=150 style="+STYLE_MIKE2+">Items</td><td style="+STYLE_MIKE1+">");
  document.write("<input name=totalQuantity type=text readonly style="+STYLE_MIKE3+" size=7></td></tr>");
  document.write("<tr><td width=150 style="+STYLE_MIKE2+">Price</td><td style="+STYLE_MIKE1+">&pound;");
  document.write("<input name=totalPrice type=text readonly style="+STYLE_MIKE3+" size=7></td></tr>");
  document.write("<tr><td width=150 style="+STYLE_MIKE2+">VAT</td><td style="+STYLE_MIKE1+">&pound;");
  document.write("<input name=totalVAT type=text readonly style="+STYLE_MIKE3+" size=7></td></tr>");
  document.write("<tr><td width=150 style="+STYLE_MIKE2+">Shipping (UK Only)</td><td style="+STYLE_MIKE1+">&pound;");
  document.write("<input name=totalShip type=text readonly style="+STYLE_MIKE3+" size=7></td></tr>");
  document.write("<tr><td width=150 style="+STYLE_MIKE2+">Total</td><td style="+STYLE_MIKE1+">&pound;");
  document.write("<input name=totalExpense type=text readonly style="+STYLE_MIKE3+" size=7></td></tr>");
  document.write("</table></form><BR><BR>");
  document.write("<center><input class=\"pointerhand\" type=button value=\"CONFIRM ORDER CONTENT\" onclick=\"javascript:window.location='checkout_details.html'\"></center>");

  refreshBasketView();
}


function refreshBasketView()
{
  var totalPrice = 0;
  var totalVAT   = 0;
  var totalShip  = gGlobalShippingCost;
  var totalQuantity = 0;

  for (var i=0; (invCode[i]); i++) {
	var Q = invQuantity[i];		// Quantity required of this line ..
    // Update Basket & tot-up totals
    if (Q>0) {
      totalQuantity = eval(totalQuantity) + eval(Q);
      totalPrice    = eval(totalPrice)    + eval(invPrice[i]*Q);
      totalVAT      = eval(totalVAT)      + eval(invVAT[i]*Q);
      totalShip     = eval(totalShip)     + eval(getNumber(invShipFirst[i],2));
      if (Q>1) {
        totalShip   = eval(totalShip) + eval(invShipOther[i]*(Q-1));
      }
    }
  }

  if (totalQuantity==0) {
    totalShip = 0;
  }

  // Update Mini Basket
  if (document.minibasket) {
    document.minibasket.totalQuantity.value = totalQuantity;
    document.minibasket.totalExpense.value = getNumber(eval(totalPrice)+eval(totalVAT)+eval(totalShip),2);
  }
  
  // Update Basket
  if (document.basket) {
    document.basket.totalQuantity.value = totalQuantity;
    document.basket.totalPrice.value    = getNumber(totalPrice,2);
    document.basket.totalVAT.value      = getNumber(totalVAT,2);
    document.basket.totalShip.value     = getNumber(totalShip,2);
    document.basket.totalExpense.value  = getNumber(eval(totalPrice)+eval(totalVAT)+eval(totalShip),2);
  }
}


function updateBasket()
{
  // called when a quantity is changed (or Basket emptied)
  for (var L=0; (L<gBasketLines); L++) {
	var I = L*3;	// 3 element per basket line
    var Q = getNumber(document.basket.elements[I].value);
  	var i = getNumber(document.basket.elements[I+2].value);	// cross ref to database index
    document.basket.elements[I+1].value = getNumber(eval(invPrice[i])*eval(Q),2);		// update cost field (2dp)
    invQuantity[i] = Q;		// save new quantity
  }
  setEShopCookie();
  refreshBasketView();
}


function setBasketEmpty()
{
  for (var i=0; (invCode[i]); i++) {
    invQuantity[i]=0;
  }
  for (var L=0; (L<gBasketLines); L++) {
    document.basket.elements[(L*3)].value = "0";
  }
  updateBasket();
}


function showCheckoutDetails()
{
  var i;
  var j = 0;
  var totalPrice = 0;
  var totalVAT   = 0;
  var totalShip  = gGlobalShippingCost;
  var totalQuantity = 0;
  var basket = "";

  document.write("<BR>");
  showBanner("CHECKOUT: Delivery Details");
  document.write("<BR>");

  document.write("<form name=checkout method=post action=checkout_send.php encode=text/plain>");

   for (i=0; (invCode[i]); i++) {
    if (invQuantity[i]>0) {
      totalQuantity = eval(totalQuantity) + eval(invQuantity[i]);
      totalPrice    = eval(totalPrice) + eval(invPrice[i]*invQuantity[i]);
      totalVAT      = eval(totalVAT) + eval(invVAT[i]*invQuantity[i]);
      totalShip     = eval(totalShip) + eval(getNumber(invShipFirst[i],2));
      if (invQuantity[i]>1)
      {
        totalShip   = eval(totalShip) + eval(invShipOther[i]*(invQuantity[i]-1));
      }

      basket = basket + invCode[i] + "\t" +
                        invName[i] + "\t" +
                        invPrice[i] + "\t" +
                        invQuantity[i] + "\t" +
                        eval(invPrice[i]*invQuantity[i]) + "\n";
      j++;
    }
  }
  
  basket = basket + "\nItems: " + totalQuantity +
                "\n\nPrice : £" + getNumber(totalPrice,2) +
				"\n\nVAT   : £" + getNumber(totalVAT,2) +
				"\n\nPnP   : £" + getNumber(totalShip,2) +
				"\n\nTotal : £" + getNumber(eval(totalPrice) + eval(totalVAT) + eval(totalShip),2) + "\n";
  //mike
  //document.write("<br><pre>");			
  //document.write(basket);			
  //document.write("</pre><br>");			
  document.write("<input type=hidden name=BASKET value=\""+basket+"\">");

  document.write("<center><DIV style=\"width:80%; text-align:justify;\">Please complete the following details so we can complete your order. All * fields are mandatory as we may need to contact you in order to complete payment or confirm order details.</DIV></center>");
  document.write("<BR>");
  document.write("<center><DIV style=\"width:80%; text-align:justify;\">By confirming these details an email of your order will be sent to our sales team.  If you wish to complete payment via PAYPAL then you may do so on the next page, otherwise a sales representative will contact you as soon as possible to arrange payment.</DIV></center>");
  document.write("<BR>");

  document.write("<table border=0 width=450 cellpadding=1 cellspacing=0 align=center bgcolor="+COLOUR_BASKET_BACKGROUND+">");
  document.write("<tr><td width=150 style=\""+STYLE_BASKET_BANNER+"; background-image:url('"+COLOUR_BASKET_BANNER_BGIMAGE+"');\"><B>Full Name*</B></td>");
  document.write("</td><td style=\"border:solid; border-color:"+COLOUR_BASKET_BANNER_EDGE+"; border-width:1; text-align:center\">");
  document.write("<input name=NAME type=text style=\"border:none; background-color:"+COLOUR_BASKET_EDITABLE+";\" size=50 maxlength=50></td></tr>");
  document.write("<tr><td rowspan=4 width=150 style=\""+STYLE_BASKET_BANNER+"; background-image:url('"+COLOUR_BASKET_BANNER_BGIMAGE+"');\" valign=top><B>Delivery Address*</B></td>");
  document.write("</td><td style=\"border:solid; border-color:"+COLOUR_BASKET_BANNER_EDGE+"; border-width:1; text-align:center\">");
  document.write("<input name=ADDRESS1 type=text style=\"border:none; background-color:"+COLOUR_BASKET_EDITABLE+";\" size=50 maxlength=50></td></tr>");
  document.write("<tr>");
  document.write("</td><td style=\"border:solid; border-color:"+COLOUR_BASKET_BANNER_EDGE+"; border-width:1; text-align:center\">");
  document.write("<input name=ADDRESS2 type=text style=\"border:none; background-color:"+COLOUR_BASKET_EDITABLE+";\" size=50 maxlength=50></td></tr>");
  document.write("<tr>");
  document.write("</td><td style=\"border:solid; border-color:"+COLOUR_BASKET_BANNER_EDGE+"; border-width:1; text-align:center\">");
  document.write("<input name=ADDRESS3 type=text style=\"border:none; background-color:"+COLOUR_BASKET_EDITABLE+";\" size=50 maxlength=50></td></tr>");
  document.write("<tr>");
  document.write("</td><td style=\"border:solid; border-color:"+COLOUR_BASKET_BANNER_EDGE+"; border-width:1; text-align:center\">");
  document.write("<input name=ADDRESS4 type=text style=\"border:none; background-color:"+COLOUR_BASKET_EDITABLE+";\" size=50 maxlength=50></td></tr>");
  document.write("<tr><td width=150 style=\""+STYLE_BASKET_BANNER+"; background-image:url('"+COLOUR_BASKET_BANNER_BGIMAGE+"');\"><B>Postcode*</B></td>");
  document.write("</td><td style=\"border:solid; border-color:"+COLOUR_BASKET_BANNER_EDGE+"; border-width:1; text-align:center\">");
  document.write("<input name=POSTCODE type=text style=\"border:none; background-color:"+COLOUR_BASKET_EDITABLE+";\" size=50 maxlength=20></td></tr>");
  document.write("<tr><td width=150 style=\""+STYLE_BASKET_BANNER+"; background-image:url('"+COLOUR_BASKET_BANNER_BGIMAGE+"');\"><B>Telephone*</B></td>");
  document.write("</td><td style=\"border:solid; border-color:"+COLOUR_BASKET_BANNER_EDGE+"; border-width:1; text-align:center\">");
  document.write("<input name=TEL type=text style=\"border:none; background-color:"+COLOUR_BASKET_EDITABLE+";\" size=50 maxlength=20></td></tr>");
  document.write("<tr><td width=150 style=\""+STYLE_BASKET_BANNER+"; background-image:url('"+COLOUR_BASKET_BANNER_BGIMAGE+"');\"><B>Mobile</B></td>");
  document.write("</td><td style=\"border:solid; border-color:"+COLOUR_BASKET_BANNER_EDGE+"; border-width:1; text-align:center\">");
  document.write("<input name=MOB type=text style=\"border:none; background-color:"+COLOUR_BASKET_EDITABLE+";\" size=50 maxlength=20></td></tr>");
  document.write("<tr><td width=150 style=\""+STYLE_BASKET_BANNER+"; background-image:url('"+COLOUR_BASKET_BANNER_BGIMAGE+"');\"><B>FAX</B></td>");
  document.write("</td><td style=\"border:solid; border-color:"+COLOUR_BASKET_BANNER_EDGE+"; border-width:1; text-align:center\">");
  document.write("<input name=FAX type=text style=\"border:none; background-color:"+COLOUR_BASKET_EDITABLE+";\" size=50 maxlength=20></td></tr>");
  document.write("<tr><td width=150 style=\""+STYLE_BASKET_BANNER+"; background-image:url('"+COLOUR_BASKET_BANNER_BGIMAGE+"');\"><B>E-Mail*</B></td>");
  document.write("</td><td style=\"border:solid; border-color:"+COLOUR_BASKET_BANNER_EDGE+"; border-width:1; text-align:center\">");
  document.write("<input name=EMAIL type=text style=\"border:none; background-color:"+COLOUR_BASKET_EDITABLE+";\" size=50 maxlength=50 value=\"");
  document.write("\"></td></tr></table><br>");

  document.write("<table border=0 width=450 cellpadding=1 cellspacing=0 align=center bgcolor="+COLOUR_BASKET_BACKGROUND+">");
  document.write("<tr><td width=150 style=\""+STYLE_BASKET_BANNER+"; background-image:url('"+COLOUR_BASKET_BANNER_BGIMAGE+"');\"><B>Requests</B></td>");
  document.write("</td><td style=\"border:solid; border-color:"+COLOUR_BASKET_BANNER_EDGE+"; border-width:1; text-align:center\">");
  document.write("<textarea name=REQUESTS style=\"border:none; background-color:"+COLOUR_BASKET_EDITABLE+";\" cols=30 rows=6 maxlength=50 scroll=none>");
//  document.write("");
  document.write("</textarea></td></tr>");
  document.write("</table>");

  document.write("<BR>");
  document.write("<BR>");

  document.write("<table border=0 width=450 cellpadding=1 cellspacing=0 align=center bgcolor="+COLOUR_BASKET_BACKGROUND+">");
  document.write("<tr><td width=150 style=\""+STYLE_BASKET_BANNER+"; background-image:url('"+COLOUR_BASKET_BANNER_BGIMAGE+"');\"><B>Items</B></td>");
  document.write("<td style=\"border:solid; border-color:"+COLOUR_BASKET_BANNER_EDGE+"; border-width:1; text-align:center\">");
  document.write("<input name=TOTALQUANTITY type=text readonly style=\"border:none; background-color:"+COLOUR_BASKET_BACKGROUND+"; text-align=right;\" size=5 value=\"");
  document.write(totalQuantity);
  document.write("\"></td></tr>");
  document.write("<tr><td width=150 style=\""+STYLE_BASKET_BANNER+"; background-image:url('"+COLOUR_BASKET_BANNER_BGIMAGE+"');\"><B>Total</B></td>");
  document.write("</td><td style=\"border:solid; border-color:"+COLOUR_BASKET_BANNER_EDGE+"; border-width:1; text-align:center\">&pound;");
  document.write("<input name=TOTALPRICE type=text readonly style=\"border:none; background-color:"+COLOUR_BASKET_BACKGROUND+"; text-align=right;\" size=7 value=\"");
  document.write(getNumber(eval(totalPrice)+eval(totalVAT)+eval(totalShip),2));
  document.write("\"></td></tr>");
  document.write("</table>");

  document.write("<BR><BR>");
  document.write("<center><input class=\"pointerhand\" type=button value=\"CONFIRM AND SEND ORDER\" onclick=\"validateCheckoutForm()\"></center>");
  document.write("</form>");
}
function validateCheckoutForm()
{
  var result="CHECKOUT FAILED\n\n";
  if (document.forms.checkout.NAME.value=="") result=result+"- Full Name is required\n";
  if (document.forms.checkout.ADDRESS1.value=="") result=result+"- Delivery Address is required\n";
  if (document.forms.checkout.POSTCODE.value=="") result=result+"- Postcode is required\n";
  if (document.forms.checkout.TEL.value=="") result=result+"- Telephone Number is required\n";
  if (document.forms.checkout.EMAIL.value=="") result=result+"- E-Mail Address is required\n";
  else if (document.forms.checkout.EMAIL.value.indexOf('@')==-1 || document.forms.checkout.EMAIL.value.indexOf('.',document.forms.checkout.EMAIL.value.indexOf('@')+2)==-1) result=result+"- E-Mail Address is invalid\n";

  if (result == "CHECKOUT FAILED\n\n")
  {
//    document.forms.checkout.REQUESTS.value=document.forms.checkout.REQUESTS.value.replace(/\x0d\x0a/g,'<BR>');
    document.forms.checkout.submit();
  }
  else
    alert(result);
}

function showCheckoutSent(pReturn)
{
  document.write("<BR>");
  showBanner("CHECKOUT: Order Request Sent");
  document.write("<BR>");

  document.write("<center><DIV style=\"width:80%; text-align:justify;\">Your details have been sent and we will contact you as soon as possible.<BR><BR>You may choose to pay directly using PAYPAL, simply press the button below. Otherwise a sales representative will be in contact with you to arrange payment.<BR><BR>Thank you for your order.</DIV></center>");
  document.write("<BR>");
  document.write("<center>");
  showPaypalButton(pReturn);
  document.write("</center>");
}

function showCheckoutPaid()
{
  document.write("<BR>");
  showBanner("CHECKOUT: Payment Sent");
  document.write("<BR>");

  document.write("<center><DIV style=\"width:80%; text-align:justify;\">Your payment has been sent and we will dispatch your order as soon as possible.<BR><BR>Thank you for your order.</DIV></center>");
}

function showPaypalButton(pReturn)
{
  var i;
  var p = 1;
//mike
  document.write("<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\">");
  document.write("<input type=\"hidden\" name=\"cmd\"           value=\"_cart\">");
  document.write("<input type=\"hidden\" name=\"upload\"        value=\"1\">");
  document.write("<input type=\"hidden\" name=\"business\"      value=\""+PAYPAL_EMAIL+"\">");
  document.write("<input type=\"hidden\" name=\"currency_code\" value=\"GBP\">");
  document.write("<input type=\"hidden\" name=\"return\" value=\""+location.hostname+"/"+pReturn+"\">");

  var GlobShip=gGlobalShippingCost;
  for (i=0; (invCode[i]); i++) {
    if (invQuantity[i]>0) {
      document.write("<input type=\"hidden\" name=\"item_name_"  +p+"\" value=\""+invName[i]+"\">");
      document.write("<input type=\"hidden\" name=\"item_number_"+p+"\" value=\""+invCode[i]+"\">");
      document.write("<input type=\"hidden\" name=\"quantity_"   +p+"\" value=\""+invQuantity[i]+"\">");
      document.write("<input type=\"hidden\" name=\"amount_"     +p+"\" value=\""+invPrice[i]+"\">");
      //document.write("<input type=\"hidden\" name=\"shipping_"   +p+"\" value=\""+(eval(getNumber(invShipFirst[i],2))+eval(GlobShip))+"\"><br>");
      document.write("<input type=\"hidden\" name=\"shipping_"   +p+"\" value=\""+eval(getNumber(invShipFirst[i],2))+"\">");
      document.write("<input type=\"hidden\" name=\"shipping2_"  +p+"\" value=\""+invShipOther[i]+"\">");
      document.write("<input type=\"hidden\" name=\"tax_"        +p+"\" value=\""+invVAT[i]+"\">");
	  GlobShip=0;
      p++;
    }
  }


document.write("<input type=\"image\" src=\"images/paynow.jpg\" name=\"submit\" alt=\"Make payments with PayPal - it's fast, free and secure!\">");
  document.write("</form>");
}

function showLinkBox(pTitle,pLink,pTextAbove,pImage,pTextBelow,pVAlign)
{
  var tbText = "<table width=\"100%\" height=\"268\" cellspacing=0 cellpadding=0><tr><td>"+pTextAbove+"</td></tr>";

  if (pImage!="")
  {
    tbText = tbText + "<tr height=\"100%\"><td height=\"100%\"><image width=\"100%\" height=\"100%\" src=\""+pImage+"\"></td></tr>";
  }
  if (pTextBelow && (pTextBelow!=""))
  {
    tbText = tbText + "<tr><td>"+pTextBelow+"</td></tr>";
  }
  tbText = tbText + "</table>";

  if (!pVAlign)
  {
    pVAlign = "";
  }

  document.write("<div class=\"pointerhand\" onclick=\"window.location='"+pLink+"'\">");
  showTextBoxMAX(pTitle,tbText,pVAlign);
  document.write("</div>");
}

function showSelectItems(pPage,pBSList)
{
  var i = 0;
  var j = 0;
  var code1 = -1;
  var code2 = -1;
  var code3 = -1;

  getParams();
  if (getParamValue("firstitem")!="") gFirstItem=eval(getParamValue("firstitem"));

  document.write("<table width=90% cellpadding=0 cellspacing=0 align=center>");

  for (i=gFirstItem;(i<(gFirstItem+gItemsPerPage) && pBSList[i]);i+=3)
  {
    matches =0;
    code1 = -1;
    code2 = -1;
    code3 = -1;

    for (j=0;(invCode[j] && matches<3);j++)
    {
      if (invCode[j]==pBSList[i])
      {
        code1 = j;
        matches++;
      }
      if (invCode[j]==pBSList[i+1])
      {
        code2 = j;
        matches++;
      }
      if (invCode[j]==pBSList[i+2])
      {
        code3 = j;
        matches++;
      }
    }

    document.write("<tr><td colspan=3>");
    if (code1>-1)
    {
      if (code2>-1)
      {
        if (code3>-1)
        {
          showInventoryItemTriple(code1,code2,code3);
        }
        else
        {
          showInventoryItemTriple(code1,code2);
        }
      }
      else
      {
        showInventoryItemTriple(code1);
      }
    }
    document.write("</td></tr>");
  }
  document.write("<tr><td class=centered>");
  if (gFirstItem-gItemsPerPage<0)
  {
    if (gFirstItem>0)
    {
      document.write("<a style=\"text-decoration:none\" href=\""+pPage+"?firstitem=0&itemsperpage="+gItemsPerPage+"\"><image src=\"images/prev.gif\" border=0></A>");
    }
  }
  else
  {
    document.write("<a style=\"text-decoration:none\" href=\""+pPage+"?firstitem="+(gFirstItem-gItemsPerPage)+"&itemsperpage="+gItemsPerPage+"\"><image src=\"images/prev.gif\" border=0></A>");
  }
  document.write("</td><td width=100%>&nbsp;</td><td>");
  if (pBSList[gFirstItem+gItemsPerPage])
  {
    document.write("<a style=\"text-decoration:none\" href=\""+pPage+"?firstitem="+(gFirstItem+gItemsPerPage)+"&itemsperpage="+gItemsPerPage+"\"><image src=\"images/next.gif\" border=0></A>");
  }
  document.write("</td></tr></table>");
}

function showFAQ()
{
  document.write("<BR>");
  showBanner("Frequently Asked Questions");
  document.write("<BR>");

  document.write("<table width=90% align=center cellspacing=0 cellpadding=0>");
  document.write("<tr><td style=\"padding-bottom:20px;\">Please find below a list of the common questions concerning this site, click on any question to view the associated answer.<BR><BR>If you require further assistance, please email us directly: <A HREF=\"mailto:sales@cuberoot.co.uk\">sales@cuberoot.co.uk</A></td></tr>");
  for (var f=0; (faqQuestion[f]); f++) {
    document.write("<tr class=\"pointerhand\" style=\"width:100%;\"><td style=\""+STYLE_FAQ_QUESTION+"\" onclick=\"javascript:if(getStyleClass('faqAnswer"+f+"').style.display=='none'){getStyleClass('faqAnswer"+f+"').style.display = 'list-item';}else{getStyleClass('faqAnswer"+f+"').style.display='none'}\">");
    document.write("Q"+(f+1)+".&nbsp;"+faqQuestion[f]);
    document.write("</td></tr>");
    document.write("<tr class=\"faqAnswer"+f+"\" style=\"width:100%;\"><td style=\""+STYLE_FAQ_ANSWER+"\">");
    document.write(faqAnswer[f]);
    document.write("</td></tr>");
  }

  document.write("</table>");
}

//-----------------------------------------------------------------------------------//
// Generic Page Layout
//-----------------------------------------------------------------------------------//
function showHeader()
{
  document.write("<table width=900 height=100% border=0 cellpadding=0 cellspacing=0 align=center style=\"border:solid; border-width:1; border-color:"+COLOUR_MAIN_EDGE+";\">");

  document.write(" <tr width=100%><td style=\"background-color:"+COLOUR_TOPMENU_BACKGROUND+"; background-image:url('"+COLOUR_TOPMENU_BGIMAGE+"');\">");
  document.write("  <table width=100% border=0 cellpadding=0 cellspacing=0><tr>");
  document.write("    <td class=\"pointerhand\" style=\""+STYLE_TOPMENU_ITEM+" border:solid; border-width:1; border-color:"+COLOUR_TOPMENU_ITEM_EDGE+"; background-color:"+COLOUR_TOPMENU_ITEM_BACKGROUND+"; background-image:url('"+COLOUR_TOPMENU_ITEM_BGIMAGE+"');\" onmouseover=\"javascript:this.style.backgroundColor='"+COLOUR_TOPMENU_ITEM_HIGHLIGHT+"'\" onmouseout=\"javascript:this.style.backgroundColor='"+COLOUR_TOPMENU_ITEM_BACKGROUND+"'\" onclick=\"window.location='index.html'\">Home</td>");
  document.write("    <td class=\"pointerhand\" style=\""+STYLE_TOPMENU_ITEM+" border:solid; border-width:1; border-color:"+COLOUR_TOPMENU_ITEM_EDGE+"; background-color:"+COLOUR_TOPMENU_ITEM_BACKGROUND+"; background-image:url('"+COLOUR_TOPMENU_ITEM_BGIMAGE+"');\" onmouseover=\"javascript:this.style.backgroundColor='"+COLOUR_TOPMENU_ITEM_HIGHLIGHT+"'\" onmouseout=\"javascript:this.style.backgroundColor='"+COLOUR_TOPMENU_ITEM_BACKGROUND+"'\" onclick=\"window.location='mybasket.html'\">Checkout</td>");
  document.write("    <td class=\"pointerhand\" style=\""+STYLE_TOPMENU_ITEM+" border:solid; border-width:1; border-color:"+COLOUR_TOPMENU_ITEM_EDGE+"; background-color:"+COLOUR_TOPMENU_ITEM_BACKGROUND+"; background-image:url('"+COLOUR_TOPMENU_ITEM_BGIMAGE+"');\" onmouseover=\"javascript:this.style.backgroundColor='"+COLOUR_TOPMENU_ITEM_HIGHLIGHT+"'\" onmouseout=\"javascript:this.style.backgroundColor='"+COLOUR_TOPMENU_ITEM_BACKGROUND+"'\" onclick=\"window.location='faq.html'\">FAQ</td>");
  document.write("    <td class=\"pointerhand\" style=\""+STYLE_TOPMENU_ITEM+" border:solid; border-width:1; border-color:"+COLOUR_TOPMENU_ITEM_EDGE+"; background-color:"+COLOUR_TOPMENU_ITEM_BACKGROUND+"; background-image:url('"+COLOUR_TOPMENU_ITEM_BGIMAGE+"');\" onmouseover=\"javascript:this.style.backgroundColor='"+COLOUR_TOPMENU_ITEM_HIGHLIGHT+"'\" onmouseout=\"javascript:this.style.backgroundColor='"+COLOUR_TOPMENU_ITEM_BACKGROUND+"'\" onclick=\"window.location='shipping.html'\">Shipping</td>");
  document.write("    <td class=\"pointerhand\" style=\""+STYLE_TOPMENU_ITEM+" border:solid; border-width:1; border-color:"+COLOUR_TOPMENU_ITEM_EDGE+"; background-color:"+COLOUR_TOPMENU_ITEM_BACKGROUND+"; background-image:url('"+COLOUR_TOPMENU_ITEM_BGIMAGE+"');\" onmouseover=\"javascript:this.style.backgroundColor='"+COLOUR_TOPMENU_ITEM_HIGHLIGHT+"'\" onmouseout=\"javascript:this.style.backgroundColor='"+COLOUR_TOPMENU_ITEM_BACKGROUND+"'\" onclick=\"window.location='support.html'\">Support</td>");
  document.write("    <td class=\"pointerhand\" style=\""+STYLE_TOPMENU_ITEM+" border:solid; border-width:1; border-color:"+COLOUR_TOPMENU_ITEM_EDGE+"; background-color:"+COLOUR_TOPMENU_ITEM_BACKGROUND+"; background-image:url('"+COLOUR_TOPMENU_ITEM_BGIMAGE+"');\" onmouseover=\"javascript:this.style.backgroundColor='"+COLOUR_TOPMENU_ITEM_HIGHLIGHT+"'\" onmouseout=\"javascript:this.style.backgroundColor='"+COLOUR_TOPMENU_ITEM_BACKGROUND+"'\" onclick=\"window.location='contact.html'\">Contact&nbsp;Us</td>");
  document.write("    <td class=\"pointerhand\" style=\""+STYLE_TOPMENU_ITEM+" border:solid; border-width:1; border-color:"+COLOUR_TOPMENU_ITEM_EDGE+"; background-color:"+COLOUR_TOPMENU_ITEM_BACKGROUND+"; background-image:url('"+COLOUR_TOPMENU_ITEM_BGIMAGE+"');\" onmouseover=\"javascript:this.style.backgroundColor='"+COLOUR_TOPMENU_ITEM_HIGHLIGHT+"'\" onmouseout=\"javascript:this.style.backgroundColor='"+COLOUR_TOPMENU_ITEM_BACKGROUND+"'\" onclick=\"window.location='aboutus.html'\">About&nbsp;Us</td>");
  document.write("    <td width=100% style=\""+STYLE_TOPMENU_ITEM+" border:solid; border-width:1; border-color:"+COLOUR_TOPMENU_ITEM_EDGE+"; background-color:"+COLOUR_TOPMENU_BACKGROUND+"; background-image:url('"+COLOUR_TOPMENU_BGIMAGE+"');\"></td>");
  document.write("  </tr></table>");
  document.write(" </td></tr>");

  document.write(" <tr width=100%><td style=\"background-color:"+COLOUR_HEADER_BACKGROUND+"; background-image:url('"+COLOUR_HEADER_BGIMAGE+"');\">");
  document.write("  <table width=100% border=0 cellpadding=0 cellspacing=0><tr><td><image src=\"images/header.jpg\"></td><td width=100%></td><td style=\"padding:5\">");
  showInventoryBasketMini();
  document.write("  </td></tr></table>");
  document.write(" </td></tr>");
}
function showSideMenu()
{
  var s = 0;

  document.write(" <tr height=100%><td>");
  document.write("  <table width=100% height=100% border=0 cellpadding=0 cellspacing=0><tr><td rowspan=2 width=120 valign=top style=\"background-color:"+COLOUR_MENU_BACKGROUND+"; background-image:url('"+COLOUR_MENU_BGIMAGE+"'); padding:5; padding-top:0;\">");

  document.write("    <table border=0 align=center cellpadding=0 cellspacing=0>");
  document.write("     <tr><td style=\""+STYLE_MENU_ITEM+" border:solid; border-width:1; border-color:"+COLOUR_MENU_ITEM_EDGE+"; padding:4; background-color:"+COLOUR_MENU_BACKGROUND+"; background-image:url('"+COLOUR_MENU_BGIMAGE+"'); text-align:center; font-weight:700;\">CATEGORIES</td></tr>");
  while (invSectionName[s])
  {
    document.write("     <tr><td class=\"pointerhand\" style=\""+STYLE_MENU_ITEM+" border:solid; border-width:1; border-color:"+COLOUR_MENU_ITEM_EDGE+"; padding:4; background-color:"+COLOUR_MENU_ITEM_BACKGROUND+"; background-image:url('"+COLOUR_MENU_ITEM_BGIMAGE+"');\" onmouseover=\"javascript:this.style.backgroundColor='"+COLOUR_MENU_ITEM_HIGHLIGHT+"'\" onmouseout=\"javascript:this.style.backgroundColor='"+COLOUR_MENU_ITEM_BACKGROUND+"'\" onclick=\"window.location='items.html?section="+s+"'\"><table cellspacing=0 cellpadding=0><tr><td><image src=\"images/logo_sm.jpg\" style=\"margin-right:4px;\"></td>");
    document.write("       <td>");
    document.write(invSectionName[s]);
    document.write("</td></tr></table></td></tr>");
    s++;
  }
  document.write("     <tr><td height=20></td></tr>");
  document.write("     <tr><td>");
  showTextBoxMAX("Renewable Energy","<center><image class=\"pointerhand\" src=\"images/planning.jpg\" onclick=\"javascript:window.location.href='planning.html'\"></center>");
  document.write("     </td></tr>");
  document.write("     <tr><td>");
  showTextBoxMAX("Product Literature","<center><image class=\"pointerhand\" src=\"images/recommended.jpg\" onclick=\"javascript:window.location.href='recommended.html'\"></center>");
  document.write("     </td></tr>");
  document.write("     <tr><td style=\"padding:4\"><center><image src=\"images/paypal.jpg\"></center></td></tr>");

/*
  document.write("     <tr><td class=\"pointerhand\" style=\""+STYLE_MENU_ITEM+" border:solid; border-width:1; border-color:"+COLOUR_MENU_ITEM_EDGE+"; padding:4; background-color:"+COLOUR_MENU_BACKGROUND+"; background-image:url('"+COLOUR_MENU_BGIMAGE+"'); text-align:center; font-weight:700;\">INFORMATION</td></tr>");
  document.write("     <tr><td class=\"pointerhand\" style=\""+STYLE_MENU_ITEM+" border:solid; border-width:1; border-color:"+COLOUR_MENU_ITEM_EDGE+"; padding:4; background-color:"+COLOUR_MENU_ITEM_BACKGROUND+"; background-image:url('"+COLOUR_MENU_ITEM_BGIMAGE+"');\" onmouseover=\"javascript:this.style.backgroundColor='"+COLOUR_MENU_ITEM_HIGHLIGHT+"'\" onmouseout=\"javascript:this.style.backgroundColor='"+COLOUR_MENU_ITEM_BACKGROUND+"'\" onclick=\"window.location='mybasket.html'\">Checkout</td></tr>");
  document.write("     <tr><td class=\"pointerhand\" style=\""+STYLE_MENU_ITEM+" border:solid; border-width:1; border-color:"+COLOUR_MENU_ITEM_EDGE+"; padding:4; background-color:"+COLOUR_MENU_ITEM_BACKGROUND+"; background-image:url('"+COLOUR_MENU_ITEM_BGIMAGE+"');\" onmouseover=\"javascript:this.style.backgroundColor='"+COLOUR_MENU_ITEM_HIGHLIGHT+"'\" onmouseout=\"javascript:this.style.backgroundColor='"+COLOUR_MENU_ITEM_BACKGROUND+"'\" onclick=\"window.location='faq.html'\">FAQ</td></tr>");
  document.write("     <tr><td class=\"pointerhand\" style=\""+STYLE_MENU_ITEM+" border:solid; border-width:1; border-color:"+COLOUR_MENU_ITEM_EDGE+"; padding:4; background-color:"+COLOUR_MENU_ITEM_BACKGROUND+"; background-image:url('"+COLOUR_MENU_ITEM_BGIMAGE+"');\" onmouseover=\"javascript:this.style.backgroundColor='"+COLOUR_MENU_ITEM_HIGHLIGHT+"'\" onmouseout=\"javascript:this.style.backgroundColor='"+COLOUR_MENU_ITEM_BACKGROUND+"'\" onclick=\"window.location='shipping.html'\">Shipping & Handling</td></tr>");
  document.write("     <tr><td class=\"pointerhand\" style=\""+STYLE_MENU_ITEM+" border:solid; border-width:1; border-color:"+COLOUR_MENU_ITEM_EDGE+"; padding:4; background-color:"+COLOUR_MENU_ITEM_BACKGROUND+"; background-image:url('"+COLOUR_MENU_ITEM_BGIMAGE+"');\" onmouseover=\"javascript:this.style.backgroundColor='"+COLOUR_MENU_ITEM_HIGHLIGHT+"'\" onmouseout=\"javascript:this.style.backgroundColor='"+COLOUR_MENU_ITEM_BACKGROUND+"'\" onclick=\"window.location='contact.html'\">Contact Us</td></tr>");
  document.write("     <tr><td class=\"pointerhand\" style=\""+STYLE_MENU_ITEM+" border:solid; border-width:1; border-color:"+COLOUR_MENU_ITEM_EDGE+"; padding:4; background-color:"+COLOUR_MENU_ITEM_BACKGROUND+"; background-image:url('"+COLOUR_MENU_ITEM_BGIMAGE+"');\" onmouseover=\"javascript:this.style.backgroundColor='"+COLOUR_MENU_ITEM_HIGHLIGHT+"'\" onmouseout=\"javascript:this.style.backgroundColor='"+COLOUR_MENU_ITEM_BACKGROUND+"'\" onclick=\"window.location='aboutus.html'\">About Us</td></tr>");
*/

  document.write("    </table>");

  document.write("   </td><td style=\"background-color:"+COLOUR_MAIN_BACKGROUND+"; background-image:url('"+COLOUR_MAIN_BGIMAGE+"');\" valign=top width=100% height=100%>");
}
function showFooter()
{
  document.write("  </td></tr>");
  document.write("  <tr><td style=\"background-color:"+COLOUR_MAIN_BACKGROUND+"; background-image:url('"+COLOUR_MAIN_BGIMAGE+"'); padding-top:5px; padding-bottom:5px;\">");

document.write("<center>");
  document.write(" <BR>");
  document.write(" <DIV id=\"noprint\">");
  document.write(" <font size=-2>");
  document.write("  <A style=\"text-decoration:none\" HREF=\"items.html?section=0\">Energy saving light bulbs&nbsp;</A>");
  document.write("  <A style=\"text-decoration:none\" HREF=\"items.html?section=1\">Energy saving electrical products&nbsp;</A>");
  document.write("  <A style=\"text-decoration:none\" HREF=\"items.html?section=2\">Energy saving water products&nbsp;</A>");
  document.write("  <A style=\"text-decoration:none\" HREF=\"items.html?section=3\">Energy Saving garden products&nbsp;</A>");
  document.write("  <A style=\"text-decoration:none\" HREF=\"items.html?section=5\">Energy saving heating products&nbsp;</A>");
  document.write("  <A style=\"text-decoration:none\" HREF=\"items.html?section=6\">Energy saving vehicle fuel&nbsp;</A>");
  document.write("  <A style=\"text-decoration:none\" HREF=\"items.html?section=7\">Energy saving solar water heating&nbsp;</A>");
  document.write("  <A style=\"text-decoration:none\" HREF=\"items.html?section=8\">Energy saving wind turbines&nbsp;</A>");
  document.write("  <A style=\"text-decoration:none\" HREF=\"items.html?section=9\">Energy monitoring products&nbsp;</A>");

  document.write("  <BR>");
  document.write("  <A style=\"text-decoration:none\" HREF=\"index.html\">Home&nbsp;</A>");
  document.write("  <A style=\"text-decoration:none\" HREF=\"http://www.cuberoot.biz\">Company&nbsp;</A>");
  document.write("  <A style=\"text-decoration:none\" HREF=\"contact.html\">Contact&nbsp;</A>");
  document.write("  <A style=\"text-decoration:none\" HREF=\"sitemap.xml\">Sitemap&nbsp;</A>");
  document.write("  <A style=\"text-decoration:none\" HREF=\"http://www.cuberoot-energy.co.uk\">solar panel Installation&nbsp;</A>");
  document.write("  <A style=\"text-decoration:none\" HREF=\"http://www.cuberoot-energy.com\">solar panel Instalers&nbsp;</A>");
  document.write("  <A style=\"text-decoration:none\" HREF=\"\documents/wind_generator_installation.htm\">Wind turbine installation&nbsp;</A>");
  document.write("  <A style=\"text-decoration:none\" HREF=\"\documents/solar_panel_information.doc\">Solar panel installation&nbsp;</A>");

  document.write(" </font>");
  document.write(" <BR>");
  document.write(" </DIV>");

  document.write(" <DIV id=\"printonly\">");
  document.write(" <font size=-2>");
  document.write("CubeRoot Ltd: 18 Melton Street Leicester, LE1 3NB.&nbsp;&nbsp;Contact: Bob Marles +44 (0)116 262 7370&nbsp;&nbsp;Email: sales@cuberoot.biz");
  document.write(" </font>");
  document.write(" </DIV>");
  document.write(" <font size=-2>&copy; Copyright CubeRoot Ltd. 2007 Updated 19/11/09</font>");
  document.write("</center>");


  document.write("</td></tr></table>");
  document.write(" </td></tr>");

  document.write("</table>");
}

function showBanner(pText)
{
  document.write("<table id=banner width=90% align=center cellspacing=0 style=\"margin-top:10px; margin-bottom:20px; border:solid; border-width:1; border-color:"+COLOUR_BANNER_EDGE+"; padding:4; background-color:"+COLOUR_BANNER_BACKGROUND+"; background-image:url('"+COLOUR_BANNER_BGIMAGE+"');\"><tr><td style=\"text-align:center; font-size:14pt; font-weight: 700;\">");
  document.write(pText);
  document.write("</td></tr></table>");
}
function showBannerMAX(pText)
{
  document.write("<table id=banner width=100% align=center cellspacing=0 style=\"border:solid; border-width:1; border-color:"+COLOUR_BANNER_EDGE+"; padding:4; background-color:"+COLOUR_BANNER_BACKGROUND+"; background-image:url('"+COLOUR_BANNER_BGIMAGE+"');\"><tr><td style=\"text-align:center; font-size:14pt; font-weight: 700;\">");
  document.write(pText);
  document.write("</td></tr></table>");
}
function showTextBox(pTitle, pText)
{
  document.write("<table id=textbox width=90% align=center cellspacing=0 style=\"margin-top:10px; margin-bottom:20px;\">");
  if (pTitle)
  {
    document.write("<tr><td style=\"background-color:"+COLOUR_TEXTBOX_TITLE_BACKGROUND+"; background-image:url('"+COLOUR_TEXTBOX_TITLE_BGIMAGE+"'); "+STYLE_TEXTBOX_TITLE+" border-color:"+COLOUR_TEXTBOX_TITLE_EDGE+";\">");
    document.write(pTitle);
    document.write("</td></tr>");
  }
  document.write("<tr><td style=\"background-color:"+COLOUR_TEXTBOX_BACKGROUND+"; background-image:url('"+COLOUR_TEXTBOX_BGIMAGE+"'); "+STYLE_TEXTBOX+" border-color:"+COLOUR_TEXTBOX_EDGE+";\">");
  document.write(pText);
  document.write("</td></tr>");
  document.write("</table>");
}
function showTextBoxMAX(pTitle, pText, pVAlign)
{
  document.write("<table id=textbox align=center cellspacing=0 width=100% height=100%>");
  if (pTitle)
  {
    document.write("<tr width=100%><td style=\"background-color:"+COLOUR_TEXTBOX_TITLE_BACKGROUND+"; background-image:url('"+COLOUR_TEXTBOX_TITLE_BGIMAGE+"'); "+STYLE_TEXTBOX_MAX_TITLE+" text-align:center; border-color:"+COLOUR_TEXTBOX_TITLE_EDGE+";\">");
    document.write(pTitle);
    document.write("</td></tr>");
  }
  document.write("<tr width=100% height=100%><td valign="+pVAlign+" style=\"background-color:"+COLOUR_TEXTBOX_BACKGROUND+"; background-image:url('"+COLOUR_TEXTBOX_BGIMAGE+"'); "+STYLE_TEXTBOX_MAX+" border-color:"+COLOUR_TEXTBOX_EDGE+"; width:100%; height:100%;\">");
  document.write(pText);
  document.write("</td></tr>");
  document.write("</table>");
}

//-----------------------------------------------------------------------------------//
// Run Immediately...
//-----------------------------------------------------------------------------------//

// GET DATE AND COOKIE
var now = new Date();
fixDate(now);
now.setTime(now.getTime() + 7 * 24 * 60 * 60 * 1000);

//-----------------------------------------------------------------------------------//
// Shop Colours
//-----------------------------------------------------------------------------------//
var COLOUR_MAIN_BACKGROUND_SIDES    = "#A59F8D";//"#B5BFAD";
var COLOUR_MAIN_BACKGROUND          = "#B5BFAD";
var COLOUR_MAIN_BGIMAGE             = "";//"images/m2.jpg";
var COLOUR_MAIN_EDGE                = "#D0EFD0";//"#608060";//"#D0EFD0";//"images/m2.jpg";

var COLOUR_HEADER_BACKGROUND        = "#CDD8C4";
var COLOUR_HEADER_BGIMAGE           = "";//"images/m1.jpg";

var COLOUR_TOPMENU_BACKGROUND       = "#99BB99";
var COLOUR_TOPMENU_BGIMAGE          = "";
var COLOUR_TOPMENU_ITEM_EDGE        = "#88AA88";
var COLOUR_TOPMENU_ITEM_BACKGROUND  = "#99BB99";
var COLOUR_TOPMENU_ITEM_BGIMAGE     = "";
var COLOUR_TOPMENU_ITEM_HIGHLIGHT   = "#55BB55"

var COLOUR_MENU_BACKGROUND          = "#CDD8C4";
var COLOUR_MENU_BGIMAGE             = "";//"images/m1.jpg";
var COLOUR_MENU_ITEM_EDGE           = "#227755";
var COLOUR_MENU_ITEM_BACKGROUND     = "#ECE9DE";
var COLOUR_MENU_ITEM_BGIMAGE        = "";
var COLOUR_MENU_ITEM_HIGHLIGHT      = "#BBFFBB"

var COLOUR_BUTTON                   = "#F4C9A2";

var COLOUR_BANNER_BACKGROUND        = "#AACC99";
var COLOUR_BANNER_BGIMAGE           = "";//"images/m1.jpg";
var COLOUR_BANNER_EDGE              = "#227755";

var COLOUR_TEXTBOX_TITLE_BACKGROUND = "#AACC99";
var COLOUR_TEXTBOX_TITLE_BGIMAGE    = "";
var COLOUR_TEXTBOX_TITLE_EDGE       = "#A1C390";//"#F4F4E4";//"#227755";
var COLOUR_TEXTBOX_BACKGROUND       = "#EEEEDD";
var COLOUR_TEXTBOX_BGIMAGE          = "";
var COLOUR_TEXTBOX_EDGE             = "#F4F4E4";//"#227755";

var COLOUR_BASKET_BANNER_EDGE       = "#A7997F";
var COLOUR_BASKET_BANNER            = "#D7C9AF";
var COLOUR_BASKET_BANNER_BGIMAGE    = "";//"images/m1.jpg";
var COLOUR_BASKET_EDITABLE          = "#FFFFFF";
var COLOUR_BASKET_BACKGROUND        = "#EEEEDD";

var COLOUR_MINIBASKET_BACKGROUND    = "#EEEEDD";

var COLOUR_ITEM_BANNER              = "#D7C9AF";
var COLOUR_ITEM_BANNER_BGIMAGE      = "";//"images/m1.jpg";
var COLOUR_ITEM_EDGE                = "#E0E0D0";
var COLOUR_ITEM_BACKGROUND          = "#EEEEDD";
var COLOUR_ITEM_MORE_BANNER         = "#D7C9AF";
var COLOUR_ITEM_MORE_EDGE           = "#000000";//"#B3A185";
var COLOUR_ITEM_MORE_BACKGROUND     = "#EEEEDD";

var COLOUR_SECTION_BANNER           = "#D7C9AF";
var COLOUR_SECTION_BANNER_BGIMAGE   = "";
var COLOUR_SECTION_EDGE             = "#E0E0D0";
var COLOUR_SECTION_BACKGROUND       = "#EEEEDD";

var STYLE_TOPMENU_ITEM      ="font-size:8pt;  font-weight:300; text-align:left;    height:10pt; color:#DDEEDD; padding:1; padding-left:12; padding-right:12; letter-spacing:2px;";
var STYLE_MENU_ITEM         ="font-size:9pt;  font-weight:300; text-align:left;    ";
var STYLE_SECTION_TITLE     ="font-size:12pt; font-weight:700; text-align:center;  height:36pt;";
var STYLE_ITEM_TITLE        ="font-size:12pt; font-weight:700; text-align:center;  height:36pt;";
var STYLE_BASKET_BANNER     ="font-size:11pt; font-weight:700; text-align:left;    border:solid; border-color:"+COLOUR_BASKET_BANNER_EDGE+"; border-width:1; background-color:"+COLOUR_BASKET_BANNER+"; padding:4;";
var STYLE_FAQ_QUESTION      ="font-size:12pt; font-weight:700; text-align:justify; height:24pt;";
var STYLE_FAQ_ANSWER        ="font-size:10pt; font-weight:300; text-align:justify; padding-bottom:10px;";
var STYLE_TEXTBOX_TITLE     ="font-size:12pt; font-weight:700; text-align:left;    height:24pt; padding: 4px; border:solid; border-width:1;";
var STYLE_TEXTBOX           ="padding: 5px; border:solid; border-width:1;";
var STYLE_TEXTBOX_MAX_TITLE ="font-size:12pt; font-weight:700; text-align:left;  height:24pt; padding: 4px; border:solid; border-width:1;";
var STYLE_TEXTBOX_MAX       ="padding: 0px; border:solid; border-width:1;";

var PAYPAL_EMAIL = "bob@cuberoot.biz";

//-----------------------------------------------------------------------------------//
// Set Shop Inventory
//-----------------------------------------------------------------------------------//
// setInventory(GLOBAL_SHIPPING_COST,
//              [ SECTION_NAME, SECTION_IMAGE, SECTION_DESCRIPTION,
//                   [ ITEM_CODE, ITEM_NAME, ITEM_PRICE, ITEM_VAT, ITEM_SHIPPING_FIRST, ITEM_SHIPPING_OTHER, ITEM_IMAGE, ITEM_DESCRIPTION(SHORT), ITEM_DESCRIPTION(LONG),
//                     ... ],
//                ...]);
// NB: ITEM_CODE must be unique. Except for ITEM_CODE and ITEM_PRICE all fields are optional and may be omitted by just entering ""
//     ITEM_SHIPPING_FIRST is the shipping cost for the first of these items and ITEM_SHIPPING_OTHER is the shipping cost for each subsequent one of these item ordered.
//     ITEM_VAT is the actual VAT figure to be added to the ITEM_PRICE to get the total price.

setInventory(
 "0.00", // Global Shipping Cost changed from £10 (10.00) to 0.01 29/9/06.
 
[
  "Multi-Tube&nbsp;Lamps","philex_19358R_20w_bc.jpg","Energy saving Philips, Osram, Omicron Multi-tubes",
  [
   //"C109-0001","10 pack Osram Dulux EL 20W (equiv. 100W) Longlife", "59.99", "10.50","0.00","0.00", "osram_dulux_el_20_bc.jpg","These quality Osram Dulux EL longlife 20w Energy Saving lamps last up to 12 years.","Osram Dulux EL 20W (equiv. 100W) 12 years Longlife BC.<BR><BR>Power Consumption 18W<BR><BR>Nearest Equiv. 100W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 90mm<BR><BR>Width 28mm",
   "C100-0001","10 pack Philips 11W Genie (equiv. 60W) Energy Save BC", "21.95", "3.84","0.00","0.00", "philips_11w_bc.jpg", "These Philips 1U 11w Energy Saving Lamps are our cheapest lamps and last up to 6 years, limited quantities.","Philips 2U bayonet.<BR><BR>Power Consumption 3W<BR><BR>Nearest Equiv. 20W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 90mm<BR><BR>Width 28mm",
   "C100-0002","10 pack Philips 18W Genie (equiv. 100W) Energy Save BC", "21.95", "3.84","0.00","0.00", "philips_18w_bc.jpg", "These Philips 2U 18w Energy Saving Lamps are our cheapest lamps and last up to 6 years, limited quantities.","Philips 2U bayonet.<BR><BR>Power Consumption 3W<BR><BR>Nearest Equiv. 20W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 90mm<BR><BR>Width 28mm",
   //"S101-0107","10 pack Economy 7W (equiv. 40W) Energy Save BC", "21.64", "3.79","0.00","0.00", "philex_19345R_7w_bc.jpg", "These 7w ECOLamps are excellent value and last up to 8000 hours.","An economy multi-tube<BR><BR>Power Consumption 7W<BR><BR>Nearest Equiv. 40W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 119mm<BR><BR>Width 40mm<BR><BR>Code SWOP107",
   //"S101-0111","10 pack Economy 11W (equiv. 60W)  Energy Save BC", "22.57", "3.95","0.00","0.00", "philex_19351R_11w_bc.jpg", "These 11w ECOLamps are excellent value and last up to 8000 hours.","An economy multi-tube<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 140mm<BR><BR>Width 40mm<BR><BR>Code SWOP111",
   //"S101-0118","10 pack Economy 18W (equiv. 100W) Energy Save BC", "26.81", "4.69","0.00","0.00", "philex_19358R_20w_bc.jpg", "These 18w ECOLamps are excellent value and last up to 8000 hours.","An economy multi-tube<BR><BR>Power Consumption 18W<BR><BR>Nearest Equiv. 100W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 156mm<BR><BR>Width 50mm<BR><BR>Code SWOP118",   
   //"S101-0207","10 pack Economy 7W (equiv. 40W) Energy Save ES", "21.64", "3.79","0.00","0.00", "minitubeES.jpg", "These 7w ECOLamps are excellent value and last up to 8000 hours.","An economy multi-tube<BR><BR>Power Consumption 7W<BR><BR>Nearest Equiv. 40W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 119mm<BR><BR>Width 40mm<BR><BR>Code SWOP207",
   //"S101-0211","10 pack Economy 11W (equiv. 60W)  Energy Save ES", "22.57", "3.95","0.00","0.00", "minitubeES.jpg", "These 11w ECOLamps are excellent value and last up to 8000 hours.","An economy multi-tube<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 140mm<BR><BR>Width 40mm<BR><BR>Code SWOP211",
   //"S101-0218","10 pack Economy 18W (equiv. 100W) Energy Save ES", "26.29", "4.60","0.00","0.00", "minitubeES.jpg", "These 18w ECOLamps are excellent value and last up to 8000 hours.","An economy multi-tube<BR><BR>Power Consumption 18W<BR><BR>Nearest Equiv. 100W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 156mm<BR><BR>Width 50mm<BR><BR>Code SWOP218"
   
],
  "Ultra&nbsp;Compact&nbsp;T2&nbsp;Lamps","T2 Golfball.jpg","Ultra compact T2 range of energy saving lamps",
  [
   "C110-1103","6 pack energy saving T2 spiral 3W (equiv. 20W) BC", "17.48", "3.06","0.00","0.00", "T2 Spiral BC.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact sprial with a 10000 hour life.<BR><BR>Power Consumption 3W<BR><BR>Nearest Equiv. 20W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 90mm<BR><BR>Width 28mm",
   "C110-1105","6 pack energy saving T2 spiral 5W (equiv. 30W) BC", "17.48", "3.06","0.00","0.00", "T2 Spiral BC.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact sprial with a 10000 hour life.<BR><BR>Power Consumption 5W<BR><BR>Nearest Equiv. 30W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 90mm<BR><BR>Width 28mm",
   "C110-1107","6 pack energy saving T2 spiral 7W (equiv. 40W) BC", "17.48", "3.06","0.00","0.00", "T2 Spiral BC.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact sprial with a 10000 hour life.<BR><BR>Power Consumption 7W<BR><BR>Nearest Equiv. 40W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 95mm<BR><BR>Width 28mm",
   "C110-1109","6 pack energy saving T2 spiral 9W (equiv. 50W) BC", "17.48", "3.06","0.00","0.00", "T2 Spiral BC.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact sprial with a 10000 hour life.<BR><BR>Power Consumption 9W<BR><BR>Nearest Equiv. 50W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 100mm<BR><BR>Width 28mm",
   "C110-1111","6 pack energy saving T2 spiral 11W (equiv. 60W) BC", "17.48", "3.06","0.00","0.00", "T2 Spiral BC.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact sprial with a 10000 hour life.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 105mm<BR><BR>Width 28mm",
   "C110-1203","6 pack energy saving T2 spiral 3W (equiv. 20W) ES", "17.48", "3.06","0.00","0.00", "T2 Spiral ES.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact sprial with a 10000 hour life.<BR><BR>Power Consumption 3W<BR><BR>Nearest Equiv. 20W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 90mm<BR><BR>Width 28mm",
   "C110-1205","6 pack energy saving T2 spiral 5W (equiv. 30W) ES", "17.48", "3.06","0.00","0.00", "T2 Spiral ES.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact sprial with a 10000 hour life.<BR><BR>Power Consumption 5W<BR><BR>Nearest Equiv. 30W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 90mm<BR><BR>Width 28mm",
   "C110-1207","6 pack energy saving T2 spiral 7W (equiv. 40W) ES", "17.48", "3.06","0.00","0.00", "T2 Spiral ES.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact sprial with a 10000 hour life.<BR><BR>Power Consumption 7W<BR><BR>Nearest Equiv. 40W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 95mm<BR><BR>Width 28mm",
   "C110-1209","6 pack energy saving T2 spiral 9W (equiv. 50W) ES", "17.48", "3.06","0.00","0.00", "T2 Spiral ES.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact sprial with a 10000 hour life.<BR><BR>Power Consumption 9W<BR><BR>Nearest Equiv. 50W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 100mm<BR><BR>Width 28mm",
   "C110-1211","6 pack energy saving T2 spiral 11W (equiv. 60W) ES", "17.48", "3.06","0.00","0.00", "T2 Spiral ES.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact sprial with a 10000 hour life.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 105mm<BR><BR>Width 28mm",
   "C110-2503","6 pack energy saving T2 Mini GLS 11W (equiv. 60W) BC", "23.49", "4.11","0.00","0.00", "GLS Shape.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact GLS with a 10000 hour life.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Finish Opal<BR><BR>Colour Temp 2700k<BR><BR>Height 110mm<BR><BR>Width 50mm",
   "C110-2504","6 pack energy saving T2 Mini GLS 11W (equiv. 60W) ES", "23.49", "4.11","0.00","0.00", "GLS 14w ES.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact GLS with a 10000 hour life.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Finish Opal<BR><BR>Colour Temp 2700k<BR><BR>Height 110mm<BR><BR>Width 50mm",
   "C110-2505","6 pack energy saving T2 Mini GLS 11W (equiv. 60W) SES", "23.49", "4.11","0.00","0.00", "GLS 14w ES.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact GLS with a 10000 hour life.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Finish Opal<BR><BR>Colour Temp 2700k<BR><BR>Height 110mm<BR><BR>Width 50mm",
   "C110-2506","6 pack energy saving T2 Mini GLS 11W (equiv. 60W) SBC", "23.49", "4.11","0.00","0.00", "GLS Shape.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact GLS with a 10000 hour life.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Finish Opal<BR><BR>Colour Temp 2700k<BR><BR>Height 110mm<BR><BR>Width 50mm", 
   "C110-2725","6 pack energy saving T2 Candle 11W (equiv. 60W) BC", "22.99", "4.02","0.00","0.00", "19373R.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact candle with a 10000 hour life.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Finish Pearl<BR><BR>Colour Temp 2700k<BR><BR>Height 115mm<BR><BR>Width 38mm",
   "C110-2726","6 pack energy saving T2 Candle 11W (equiv. 60W) ES", "22.99", "4.02","0.00","0.00", "19373R.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact candle with a 10000 hour life.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Finish Pearl<BR><BR>Colour Temp 2700k<BR><BR>Height 115mm<BR><BR>Width 38mm",
   "C110-2727","6 pack energy saving T2 Candle 11W (equiv. 60W) SES", "22.99", "4.02","0.00","0.00", "19374SES.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact candle with a 10000 hour life.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Finish Pearl<BR><BR>Colour Temp 2700k<BR><BR>Height 115mm<BR><BR>Width 38mm",
   "C110-2728","6 pack energy saving T2 Candle 11W (equiv. 60W) SBC", "22.99", "4.02","0.00","0.00", "19374R.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact candle with a 10000 hour life.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Finish Pearl<BR><BR>Colour Temp 2700k<BR><BR>Height 115mm<BR><BR>Width 38mm",
   "C110-2800","6 pack energy saving T2 Spotlight 7W (equiv. 40W) SES", "23.49", "4.11","0.00","0.00", "T2 Spotlight.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact spotlight with a 10000 hour life.<BR><BR>Power Consumption 7W<BR><BR>Nearest Equiv. 40W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 100mm<BR><BR>Width 50mm",
   "C110-2801","6 pack energy saving T2 Spotlight 11W (equiv. 60W) SES", "23.49", "4.11","0.00","0.00", "T2 Spotlight.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact spotlight with a 10000 hour life.<BR><BR>Power Consumption 7W<BR><BR>Nearest Equiv. 40W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 100mm<BR><BR>Width 50mm",
   "C110-2951","6 pack energy saving T2 Globe 11W (equiv. 60W) BC", "23.49", "4.11","0.00","0.00", "T2 Golfball.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact globe with a 10000 hour life.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Finish Opal<BR><BR>Colour Temp 2700k<BR><BR>Height 106mm<BR><BR>Width 60mm",
   "C110-2952","6 pack energy saving T2 Globe 11W (equiv. 60W) ES", "23.49", "4.11","0.00","0.00", "T2 Golfball.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact globe with a 10000 hour life.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Finish Opal<BR><BR>Colour Temp 2700k<BR><BR>Height 106mm<BR><BR>Width 60mm",
   "C110-2953","6 pack energy saving T2 Globe 11W (equiv. 60W) SES", "23.49", "4.11","0.00","0.00", "T2 Golfball.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact globe with a 10000 hour life.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Finish Opal<BR><BR>Colour Temp 2700k<BR><BR>Height 106mm<BR><BR>Width 60mm",
   "C110-2954","6 pack energy saving T2 Globe 11W (equiv. 60W) SBC", "23.49", "4.11","0.00","0.00", "T2 Golfball.jpg",  "Brand new T2 technology that offers the highest wattage light with the smallest possible size","Ultra compact globe with a 10000 hour life.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Finish Opal<BR><BR>Colour Temp 2700k<BR><BR>Height 106mm<BR><BR>Width 60mm"

],

 "GLS&nbsp;&&nbsp;Spiral&nbsp;Lamps","19364R.jpg","Energy saving GLS and Spiral lamps",
  [
   //"S112-0311","6 pack economy GLS 11W (equiv. 60W) BC", "14.84", "2.60","0.00","0.00", "GLS Shape.jpg",  "A compact economy GLS lamp with 8000 hours life and finished in Opal","Our GLS low energy lamps are direct replacements for traditional incandescent bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 140mm<BR><BR>Width 66mm",
   //"S112-0312","6 pack economy GLS 11W (equiv. 60W) ES", "14.84", "2.60","0.00","0.00", "GLS Shape.jpg",  "A compact economy GLS lamp with 8000 hours life and finished in Opal","Our GLS low energy lamps are direct replacements for traditional incandescent bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 140mm<BR><BR>Width 66mm",
   //"C112-8507","6 pack GLS 7W (equiv. 40W) BC", "22.37", "3.92","0.00","0.00", "GLS Shape.jpg",  "A compact GLS lamp with 8000 hours life and finished in pearl","Our GLS low energy lamps are direct replacements for traditional incandescent bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 7W<BR><BR>Nearest Equiv. 40W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 128mm<BR><BR>Width 65mm",
   //"C112-8509","6 pack GLS 9W (equiv. 50W) BC", "22.37", "3.92","0.00","0.00", "GLS Shape.jpg",  "A compact GLS lamp with 8000 hours life and finished in pearl","Our GLS low energy lamps are direct replacements for traditional incandescent bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 9W<BR><BR>Nearest Equiv. 50W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 128mm<BR><BR>Width 65mm",
   "C112-8511","6 pack GLS 11W (equiv. 60W) BC", "22.37", "3.92","0.00","0.00", "GLS Shape.jpg",  "A compact GLS lamp with 8000 hours life and finished in pearl","Our GLS low energy lamps are direct replacements for traditional incandescent bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 136mm<BR><BR>Width 65mm",
   //"C112-8514","6 pack GLS 14W (equiv. 75W) BC", "23.71", "4.15","0.00","0.00", "GLS Shape.jpg",  "A compact GLS lamp with 8000 hours life and finished in pearl","Our GLS low energy lamps are direct replacements for traditional incandescent bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 14W<BR><BR>Nearest Equiv. 75W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 139mm<BR><BR>Width 65mm",
   "C112-8518","6 pack GLS 18W (equiv. 100W) BC", "23.71", "4.15","0.00","0.00", "GLS Shape.jpg",  "A compact GLS lamp with 8000 hours life and finished in pearl","Our GLS low energy lamps are direct replacements for traditional incandescent bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 18W<BR><BR>Nearest Equiv. 100W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 173mm<BR><BR>Width 75mm",
   //"C112-8607","6 pack GLS 7W (equiv. 40W) ES", "22.37", "3.92","0.00","0.00", "GLS 14w ES.jpg",  "A compact GLS lamp with 8000 hours life and finished in pearl","Our GLS low energy lamps are direct replacements for traditional incandescent bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 7W<BR><BR>Nearest Equiv. 40W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 128mm<BR><BR>Width 65mm",
   //"C112-8609","6 pack GLS 9W (equiv. 50W) ES", "22.37", "3.92","0.00","0.00", "GLS 14w ES.jpg",  "A compact GLS lamp with 8000 hours life and finished in pearl","Our GLS low energy lamps are direct replacements for traditional incandescent bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 9W<BR><BR>Nearest Equiv. 50W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 128mm<BR><BR>Width 65mm",
   "C112-8611","6 pack GLS 11W (equiv. 60W) ES", "22.37", "3.92","0.00","0.00", "GLS 14w ES.jpg",  "A compact GLS lamp with 8000 hours life and finished in pearl","Our GLS low energy lamps are direct replacements for traditional incandescent bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 136mm<BR><BR>Width 65mm",
   //"C112-8614","6 pack GLS 14W (equiv. 75W) ES", "23.71", "4.15","0.00","0.00", "GLS 14w ES.jpg",  "A compact GLS lamp with 8000 hours life and finished in pearl","Our GLS low energy lamps are direct replacements for traditional incandescent bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 14W<BR><BR>Nearest Equiv. 75W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 139mm<BR><BR>Width 65mm",
   "C112-8618","6 pack GLS 18W (equiv. 100W) ES", "23.71", "4.15","0.00","0.00", "GLS 14w ES.jpg",  "A compact GLS lamp with 8000 hours life and finished in pearl","Our GLS low energy lamps are direct replacements for traditional incandescent bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 18W<BR><BR>Nearest Equiv. 100W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 173mm<BR><BR>Width 75mm",
   //"C112-8109","6 pack Spiral 9W (equiv. 50W) BC", "16.29", "2.85","0.00","0.00", "19364R.jpg",  "A Spiral lamp with increased light distribution and 10000 hours life.","Our low energy spiral lamps are direct replacements for traditional incandescent bulbs.<BR><BR>Power Consumption 9W<BR><BR>Nearest Equiv. 50W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 114mm<BR><BR>Width 36mm",
   //"C112-8111","6 pack Spiral 11W (equiv. 60W) BC", "17.69", "3.10","0.00","0.00", "19364R.jpg",  "A Spiral lamp with increased light distribution and 10000 hours life.","Our low energy spiral lamps are direct replacements for traditional incandescent bulbs.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 110mm<BR><BR>Width 36mm",
   "C112-8115","6 pack Spiral 15W (equiv. 75W) BC", "18.53", "3.24","0.00","0.00", "19364R.jpg",  "A Spiral lamp with increased light distribution and 10000 hours life.","Our low energy spiral lamps are direct replacements for traditional incandescent bulbs.<BR><BR>Power Consumption 15W<BR><BR>Nearest Equiv. 75W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 125mm<BR><BR>Width 36mm",
   "C112-8118","6 pack Spiral 18W (equiv. 100W) BC", "25.44", "4.45","0.00","0.00", "19364R.jpg",  "A Spiral lamp with increased light distribution and 10000 hours life.","Our low energy spiral lamps are direct replacements for traditional incandescent bulbs.<BR><BR>Power Consumption 18W<BR><BR>Nearest Equiv. 100W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 150mm<BR><BR>Width 52mm",
   "C112-8125","6 pack Spiral 25W (equiv. 150W) BC", "28.34", "4.96","0.00","0.00", "19364R.jpg",  "A Spiral lamp with increased light distribution and 10000 hours life.","Our low energy spiral lamps are direct replacements for traditional incandescent bulbs.<BR><BR>Power Consumption 25W<BR><BR>Nearest Equiv. 150W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 150mm<BR><BR>Width 52mm",
   //"C112-8209","6 pack Spiral 9W (equiv. 50W) ES", "16.29", "2.85","0.00","0.00", "19364ES.jpg",  "A Spiral lamp with increased light distribution and 10000 hours life.","Our low energy spiral lamps are direct replacements for traditional incandescent bulbs.<BR><BR>Power Consumption 9W<BR><BR>Nearest Equiv. 50W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 114mm<BR><BR>Width 36mm",
   //"C112-8211","6 pack Spiral 11W (equiv. 60W) ES", "17.69", "3.10","0.00","0.00", "19364ES.jpg",  "A Spiral lamp with increased light distribution and 10000 hours life.","Our low energy spiral lamps are direct replacements for traditional incandescent bulbs.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 110mm<BR><BR>Width 36mm",
   "C112-8215","6 pack Spiral 15W (equiv. 75W) ES", "18.53", "3.24","0.00","0.00", "19364ES.jpg",  "A Spiral lamp with increased light distribution and 10000 hours life.","Our low energy spiral lamps are direct replacements for traditional incandescent bulbs.<BR><BR>Power Consumption 15W<BR><BR>Nearest Equiv. 75W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 126mm<BR><BR>Width 36mm",
   "C112-8218","6 pack Spiral 18W (equiv. 100W) ES", "25.44", "4.45","0.00","0.00", "19364ES.jpg",  "A Spiral lamp with increased light distribution and 10000 hours life.","Our low energy spiral lamps are direct replacements for traditional incandescent bulbs.<BR><BR>Power Consumption 18W<BR><BR>Nearest Equiv. 100W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 143mm<BR><BR>Width 52mm",
   "C112-8225","6 pack Spiral 25W (equiv. 150W) ES", "28.34", "4.96","0.00","0.00", "19364ES.jpg",  "A Spiral lamp with increased light distribution and 10000 hours life.","Our low energy spiral lamps are direct replacements for traditional incandescent bulbs.<BR><BR>Power Consumption 25W<BR><BR>Nearest Equiv. 150W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 154mm<BR><BR>Width 52mm"

],

  "Candle&nbsp;Lamps","19373R.jpg","Energy saving candle lamps",
  [
   "C113-9701","6 pack Candle 3W (equiv. 25W) BC", "21.37", "3.74","0.00","0.00", "19373R.jpg",  "Standard Pearl Bayonet candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 3W<BR><BR>Nearest Equiv. 25W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 112mm<BR><BR>Width 42mm",
   "C113-9702","6 pack Candle 3W (equiv. 25W) ES", "21.37", "3.74","0.00","0.00", "candle_es.jpg",  "Standard Pearl Edison Screw candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 3W<BR><BR>Nearest Equiv. 25W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 112mm<BR><BR>Width 42mm",
   "C113-9703","6 pack Candle 3W (equiv. 25W) SES", "21.37", "3.74","0.00","0.00", "Candle SES Pearl.jpg",  "Standard Pearl Small Edison Screw candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 3W<BR><BR>Nearest Equiv. 25W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 112mm<BR><BR>Width 42mm",
   "C113-9704","6 pack Candle 3W (equiv. 25W) SBC", "21.37", "3.74","0.00","0.00", "Candle 11w SBC Pearl.jpg",  "Standard Pearl Small Bayonet candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 3W<BR><BR>Nearest Equiv. 25W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 112mm<BR><BR>Width 42mm",
   //"C113-9705","6 pack Candle 7W (equiv. 40W) BC", "23.21", "4.06","0.00","0.00", "19373R.jpg",  "Standard Pearl Bayonet candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 7W<BR><BR>Nearest Equiv. 40W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 112mm<BR><BR>Width 42mm",
   //"C113-9706","6 pack Candle 7W (equiv. 40W) ES", "23.21", "4.06","0.00","0.00", "candle_es.jpg",  "Standard Pearl Edison Screw candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 7W<BR><BR>Nearest Equiv. 40W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 112mm<BR><BR>Width 42mm",
   //"C113-9707","6 pack Candle 7W (equiv. 40W) SES", "23.21", "4.06","0.00","0.00", "Candle SES Pearl.jpg",  "Standard Pearl Small Edison Screw candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 7W<BR><BR>Nearest Equiv. 40W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 112mm<BR><BR>Width 42mm",
   //"C113-9708","6 pack Candle 7W (equiv. 40W) SBC", "23.21", "4.06","0.00","0.00", "Candle 11w SBC Pearl.jpg",  "Standard Pearl Small Bayonet candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 7W<BR><BR>Nearest Equiv. 40W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 112mm<BR><BR>Width 42mm",
   "C113-9725","6 pack Candle 11W (equiv. 60W) BC", "23.71", "4.15","0.00","0.00", "19373R.jpg",  "Standard Pearl Bayonet candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 130mm<BR><BR>Width 42mm",
   "C113-9726","6 pack Candle 11W (equiv. 60W) ES", "23.71", "4.15","0.00","0.00", "candle_es.jpg",  "Standard Pearl Edison Screw candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 130mm<BR><BR>Width 42mm",
   "C113-9727","6 pack Candle 11W (equiv. 60W) SES", "23.71", "4.15","0.00","0.00", "Candle SES Pearl.jpg",  "Standard Pearl Small Edison Screw candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 130mm<BR><BR>Width 42mm",
   "C113-9728","6 pack Candle 11W (equiv. 60W) SBC", "23.71", "4.15","0.00","0.00", "Candle 11w SBC Pearl.jpg",  "Standard Pearl Small Bayonet candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 130mm<BR><BR>Width 42mm",
   //"S113-0205","6 pack Economy Candle 5W (equiv. 30W) BC", "14.84", "2.60","0.00","0.00", "19373R.jpg",  "Standard Opal Bayonet candle bulb","Our 8000 hour candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 5W<BR><BR>Nearest Equiv. 30W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 116mm<BR><BR>Width 44mm",
   //"S113-0206","6 pack Economy Candle 5W (equiv. 30W) ES", "14.84", "2.60","0.00","0.00", "candle_es.jpg",  "Standard Opal Bayonet candle bulb","Our 8000 hour candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 5W<BR><BR>Nearest Equiv. 30W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 116mm<BR><BR>Width 44mm",
   //"C113-9711","6 pack Candle 3W (equiv. 25W) BC", "21.37", "3.74","0.00","0.00", "19373R.jpg",  "Standard Opal Bayonet candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 3W<BR><BR>Nearest Equiv. 25W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 112mm<BR><BR>Width 42mm",
   //"C113-9712","6 pack Candle 3W (equiv. 25W) ES", "21.37", "3.74","0.00","0.00", "candle_es.jpg",  "Standard Opal Edison Screw candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 3W<BR><BR>Nearest Equiv. 25W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 112mm<BR><BR>Width 42mm",
   //"C113-9713","6 pack Candle 3W (equiv. 25W) SES", "21.37", "3.74","0.00","0.00", "Candle SES Pearl.jpg",  "Standard Opal Small Edison Screw candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 3W<BR><BR>Nearest Equiv. 25W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 112mm<BR><BR>Width 42mm",
   //"C113-9714","6 pack Candle 3W (equiv. 25W) SBC", "21.37", "3.74","0.00","0.00", "Candle 11w SBC Pearl.jpg",  "Standard Opal Small Bayonet candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 3W<BR><BR>Nearest Equiv. 25W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 112mm<BR><BR>Width 42mm",
   //"C113-9715","6 pack Candle 7W (equiv. 40W) BC", "23.21", "4.06","0.00","0.00", "19373R.jpg",  "Standard Opal Bayonet candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 7W<BR><BR>Nearest Equiv. 40W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 112mm<BR><BR>Width 42mm",
   //"C113-9716","6 pack Candle 7W (equiv. 40W) ES", "23.21", "4.06","0.00","0.00", "candle_es.jpg",  "Standard Opal Edison Screw candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 7W<BR><BR>Nearest Equiv. 40W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 112mm<BR><BR>Width 42mm",
   //"C113-9717","6 pack Candle 7W (equiv. 40W) SES", "23.21", "4.06","0.00","0.00", "Candle SES Pearl.jpg",  "Standard Opal Small Edison Screw candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 7W<BR><BR>Nearest Equiv. 40W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 112mm<BR><BR>Width 42mm",
   //"C113-9718","6 pack Candle 7W (equiv. 40W) SBC", "23.21", "4.06","0.00","0.00", "Candle 11w SBC Pearl.jpg",  "Standard Opal Small Bayonet candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 7W<BR><BR>Nearest Equiv. 40W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 112mm<BR><BR>Width 42mm",
   //"C113-9735","6 pack Candle 11W (equiv. 60W) BC", "23.71", "4.15","0.00","0.00", "19373R.jpg",  "Standard Opal Bayonet candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 130mm<BR><BR>Width 42mm",
   //"C113-9736","6 pack Candle 11W (equiv. 60W) ES", "23.71", "4.15","0.00","0.00", "candle_es.jpg",  "Standard Opal Edison Screw candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 130mm<BR><BR>Width 42mm",
   //"C113-9737","6 pack Candle 11W (equiv. 60W) SES", "23.71", "4.15","0.00","0.00", "Candle SES Pearl.jpg",  "Standard Opal Small Edison Screw candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 130mm<BR><BR>Width 42mm",
   //"C113-9738","6 pack Candle 11W (equiv. 60W) SBC", "23.71", "4.15","0.00","0.00", "Candle 11w SBC Pearl.jpg",  "Standard Opal Small Bayonet candle bulb","Our candle low energy bulbs are direct replacements for traditional candle bulbs. You could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 130mm<BR><BR>Width 42mm"

],

  "Spotlight&nbsp;Lamps","omc_gu10_spot_7w.jpg","Energy saving spotlight lamps",
  [
  "C114-9080","6 pack T3 GU10 Style Spotlight 7W (equiv. 40W)", "31.08", "5.44","0.00","0.00", "omc_gu10_spot_7w.jpg","Energy saving GU10 style spotlight","With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 7W<BR><BR>Nearest Equiv. 40W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 72mm<BR><BR>Width 50mm",
  "C114-9090","6 pack T3 GU10 Style Spotlight 11W (equiv. 60W)", "31.58", "5.53","0.00","0.00", "omc_gu10_spot_7w.jpg","Energy saving GU10 style spotlight","With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 72mm<BR><BR>Width 50mm",
  "C114-9800","6 pack T3 50mm Style Spotlight 4W (equiv. 25W) SES", "34.36", "6.01","0.00","0.00", "R63 Spotlight BC.jpg","Energy saving 50mm style spotlight","With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 4W<BR><BR>Nearest Equiv. 25W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 98mm<BR><BR>Width 50mm",
  //"C114-9801","6 pack T3 63mm Style Spotlight 5W (equiv. 30W)BC", "34.36", "6.01","0.00","0.00", "R63 Spotlight BC.jpg","Energy saving 63mm style spotlight","With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 5W<BR><BR>Nearest Equiv. 30W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 108mm<BR><BR>Width 63mm",
  //"C114-9802","6 pack T3 63mm Style Spotlight 5W (equiv. 30W) ES", "34.36", "6.01","0.00","0.00", "R63 Spotlight BC.jpg","Energy saving 63mm style spotlight","With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 5W<BR><BR>Nearest Equiv. 30W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 108mm<BR><BR>Width 63mm",
  "C114-9804","6 pack T3 63mm Style Spotlight 9W (equiv. 50W) ES", "34.36", "6.01","0.00","0.00", "R63 Spotlight BC.jpg","Energy saving 63mm style spotlight","With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 9W<BR><BR>Nearest Equiv. 50W<BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 108mm<BR><BR>Width 63mm",
  //"C114-9811","6 pack T3 80mm Style Spotlight 7W (equiv. 30W)BC", "34.36", "6.01","0.00","0.00", "R63 Spotlight BC.jpg","Energy saving 80mm style spotlight","With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 7W<BR><BR>Nearest Equiv. 40W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 122mm<BR><BR>Width 80mm",
  "C114-9812","6 pack T3 80mm Style Spotlight 7W (equiv. 30W) ES", "34.36", "6.01","0.00","0.00", "R63 Spotlight BC.jpg","Energy saving 80mm style spotlight","With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 7W<BR><BR>Nearest Equiv. 40W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 122mm<BR><BR>Width 80mm",
  "C114-9816","6 pack T3 80mm Style Spotlight 11W (equiv. 50W) ES", "34.36", "6.01","0.00","0.00", "R63 Spotlight BC.jpg","Energy saving 80mm style spotlight","With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 11W<BR><BR>Nearest Equiv. 60W<BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 122mm<BR><BR>Width 80mm",
  "B114-9817","10 pack T3 95mm Style Spotlight 18W (equiv. 100W) ES", "79.32", "13.88","0.00","0.00", "R95 Spotlight.jpg","Energy saving 95mm style clear spotlight","With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 18W<BR><BR>Nearest Equiv. 100W<BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 165mm<BR><BR>Width 100mm",
  "B114-9818","10 pack T3 Par38 Style Spotlight 18W (equiv. 100W) ES", "79.32", "13.88","0.00","0.00", "Par38 18w.jpg","Energy saving Par38 style clear spotlight","With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 18W<BR><BR>Nearest Equiv. 100W<BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 175mm<BR><BR>Width 122mm",
  "B114-9813","10 pack T3 Par20 Style Spotlight 10W (equiv. 60W) ES", "79.32", "13.88","0.00","0.00", "Par 30 CFL.jpg","Energy saving Par20 style diffused spotlight","With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 10W<BR><BR>Nearest Equiv. 60W<BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 98mm<BR><BR>Width 62mm",
  "B114-9814","10 pack T3 Par30 Style Spotlight 15W (equiv. 75W) ES", "79.32", "13.88","0.00","0.00", "Par 30 CFL.jpg","Energy saving Par30 style diffused spotlight","With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 10W<BR><BR>Nearest Equiv. 75W<BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 125mm<BR><BR>Width 98mm",
  "B114-9815","10 pack T3 Par38 Style Spotlight 24W (equiv. 120W) ES", "73.22", "12.81","0.00","0.00", "Par 38 24w Spotlight.jpg","Energy saving Par38 style diffused spotlight","With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 24W<BR><BR>Nearest Equiv. 120W<BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 138mm<BR><BR>Width 122mm"
],

  "Globe&nbsp;&&nbsp;Golfball&nbsp;Lamps","Globe BC.jpg","Energy saving globe and golfball lamps",
  [
  "C115-9941","6 pack T3 50mm Golfball 4W (equiv. 25W) BC", "35.68", "6.24","0.00","0.00", "Golfball BC.jpg","Golfball lamps (Opal)","These low energy bulbs are direct replacements for traditional golfball bulbs. With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 4W<BR><BR>Nearest Equiv. 25W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 96mm<BR><BR>Width 50mm",
  "C115-9942","6 pack T3 50mm Golfball 4W (equiv. 25W) ES", "35.68", "6.24","0.00","0.00", "Golfball BC.jpg","Golfball lamps (Opal)","These low energy bulbs are direct replacements for traditional golfball bulbs. With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 4W<BR><BR>Nearest Equiv. 25W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 96mm<BR><BR>Width 50mm",
  "C115-9943","6 pack T3 50mm Golfball 4W (equiv. 25W) SES", "35.68", "6.24","0.00","0.00", "Golfball BC.jpg","Golfball lamps (Opal)","These low energy bulbs are direct replacements for traditional golfball bulbs. With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 4W<BR><BR>Nearest Equiv. 25W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 96mm<BR><BR>Width 50mm",
  "C115-9944","6 pack T3 50mm Golfball 4W (equiv. 25W) SBC", "35.68", "6.24","0.00","0.00", "Golfball BC.jpg","Golfball lamps (Opal)","These low energy bulbs are direct replacements for traditional golfball bulbs. With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 4W<BR><BR>Nearest Equiv. 25W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 96mm<BR><BR>Width 50mm",
  //"C115-9951","6 pack T3 60mm Golfball 5W (equiv. 30W) BC", "35.68", "6.24","0.00","0.00", "Golfball BC.jpg","Golfball lamps (Pearl)","These low energy bulbs are direct replacements for traditional golfball bulbs. With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 5W<BR><BR>Nearest Equiv. 30W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 108mm<BR><BR>Width 60mm",
  //"C115-9952","6 pack T3 60mm Golfball 5W (equiv. 30W) ES", "35.68", "6.24","0.00","0.00", "Golfball BC.jpg","Golfball lamps (Pearl)","These low energy bulbs are direct replacements for traditional golfball bulbs. With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 5W<BR><BR>Nearest Equiv. 30W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 108mm<BR><BR>Width 60mm",
  //"C115-9953","6 pack T3 60mm Golfball 5W (equiv. 30W) SES", "35.68", "6.24","0.00","0.00", "Golfball BC.jpg","Golfball lamps (Pearl)","These low energy bulbs are direct replacements for traditional golfball bulbs. With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 5W<BR><BR>Nearest Equiv. 30W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 108mm<BR><BR>Width 60mm",
  //"C115-9954","6 pack T3 60mm Golfball 5W (equiv. 30W) SBC", "35.68", "6.24","0.00","0.00", "Golfball BC.jpg","Golfball lamps (Pearl)","These low energy bulbs are direct replacements for traditional golfball bulbs. With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 5W<BR><BR>Nearest Equiv. 30W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 108mm<BR><BR>Width 60mm",
  "C115-9961","6 pack T3 60mm Golfball 5W (equiv. 30W) BC", "35.68", "6.24","0.00","0.00", "Golfball BC.jpg","Golfball lamps (Opal)","These low energy bulbs are direct replacements for traditional golfball bulbs. With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 5W<BR><BR>Nearest Equiv. 30W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 108mm<BR><BR>Width 60mm",
  "C115-9962","6 pack T3 60mm Golfball 5W (equiv. 30W) ES", "35.68", "6.24","0.00","0.00", "Golfball BC.jpg","Golfball lamps (Opal)","These low energy bulbs are direct replacements for traditional golfball bulbs. With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 5W<BR><BR>Nearest Equiv. 30W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 108mm<BR><BR>Width 60mm",
  "C115-9963","6 pack T3 60mm Golfball 5W (equiv. 30W) SES", "35.68", "6.24","0.00","0.00", "Golfball BC.jpg","Golfball lamps (Opal)","These low energy bulbs are direct replacements for traditional golfball bulbs. With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 5W<BR><BR>Nearest Equiv. 30W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 108mm<BR><BR>Width 60mm",
  "C115-9964","6 pack T3 60mm Golfball 5W (equiv. 30W) SBC", "35.68", "6.24","0.00","0.00", "Golfball BC.jpg","Golfball lamps (Opal)","These low energy bulbs are direct replacements for traditional golfball bulbs. With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 5W<BR><BR>Nearest Equiv. 30W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 108mm<BR><BR>Width 60mm",
  //"C115-9902","6 pack T4 B22 Globe 14W (equiv. 75W) BC", "38.47", "6.73","0.00","0.00", "Globe BC.jpg","Globe lamps (Opal)","These low energy bulbs are direct replacements for traditional globe bulbs. With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 14W<BR><BR>Nearest Equiv. 75W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 138mm<BR><BR>Width 100mm",
  "C115-9903","6 pack T4 B22 Globe 18W (equiv. 100W) BC", "38.47", "6.73","0.00","0.00", "Globe BC.jpg","Globe lamps (Opal)","These low energy bulbs are direct replacements for traditional globe bulbs. With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 18W<BR><BR>Nearest Equiv. 100W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 155mm<BR><BR>Width 115mm",
  //"C115-9904","6 pack T4 B22 Globe 22W (equiv. 110W) BC", "38.47", "6.73","0.00","0.00", "Globe BC.jpg","Globe lamps (Opal)","These low energy bulbs are direct replacements for traditional globe bulbs. With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 22W<BR><BR>Nearest Equiv. 110W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 180mm<BR><BR>Width 130mm",
  //"C115-9922","6 pack T4 E27 Globe 14W (equiv. 75W) ES", "38.47", "6.73","0.00","0.00", "Globe ES.jpg","Globe lamps (Opal)","These low energy bulbs are direct replacements for traditional globe bulbs. With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 14W<BR><BR>Nearest Equiv. 75W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 138mm<BR><BR>Width 100mm",
  "C115-9923","6 pack T4 E27 Globe 18W (equiv. 100W) ES", "38.47", "6.73","0.00","0.00", "Globe ES.jpg","Globe lamps (Opal)","These low energy bulbs are direct replacements for traditional globe bulbs. With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 18W<BR><BR>Nearest Equiv. 100W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 155mm<BR><BR>Width 115mm",
  //"C115-9924","6 pack T4 E27 Globe 22W (equiv. 110W) ES", "38.47", "6.73","0.00","0.00", "Globe ES.jpg","Globe lamps (Opal)","These low energy bulbs are direct replacements for traditional globe bulbs. With these lamps lasting up to 8000 hours, you could save up to £300 over the lifetime of the bulb.<BR><BR>Power Consumption 22W<BR><BR>Nearest Equiv. 110W<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 180mm<BR><BR>Width 130mm"

],
  "LED&nbsp;Spotlight&nbsp;Lamps","omc_led_32_2w.jpg","Energy saving LED spotlight lamps",
  [
  //"C116-0801","6 pack LED Spotlight (50mm) SES", "35.62", "6.23","0.00","0.00", "R63 Spotlight BC.jpg", "These High power LED spotlight lamps are excellent value and last up to 50000 hours.","LED Spotlight Lamp.<BR><BR>Power Consumption 1W<BR><BR>Number of LED's 15<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 98mm<BR><BR>Width 50mm",
  //"C116-0802","6 pack LED Spotlight (63mm) ES", "39.36", "6.89","0.00","0.00", "R63 Spotlight BC.jpg", "These High power LED spotlight lamps are excellent value and last up to 50000 hours.","LED Spotlight Lamp.<BR><BR>Power Consumption 1.2W<BR><BR>Number of LED's 18<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 112mm<BR><BR>Width 63mm",
  //"C116-0816","6 pack LED Spotlight (80mm) ES", "41.70", "7.30","0.00","0.00", "R63 Spotlight BC.jpg", "These High power LED spotlight lamps are excellent value and last up to 50000 hours.","LED Spotlight Lamp.<BR><BR>Power Consumption 1.4W<BR><BR>Number of LED's 21<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 122mm<BR><BR>Width 80mm",
  //"C116-0020","2 pack 15 LED GU10 (50mm) GU10", "8.59", "1.50","0.00","0.00", "omc_led_32_2w.jpg", "These High power LED GU10 lamps are excellent value and last up to 50000 hours.","LED GU10 Lamp.<BR><BR>Power Consumption 1W<BR><BR>Number of LED's 15<BR><BR>Voltage 240v<BR><BR>Colour Temp 6400k<BR><BR>Height 56mm<BR><BR>Width 50mm",
  //"C116-0021","2 pack 15 LED GU10 (50mm) GU10", "8.59", "1.50","0.00","0.00", "omc_led_32_2w.jpg", "These High power LED GU10 lamps are excellent value and last up to 50000 hours.","LED GU10 Lamp.<BR><BR>Power Consumption 1W<BR><BR>Number of LED's 15<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 56mm<BR><BR>Width 50mm",
  //"B116-0021","2 pack 32 LED GU10 (50mm) GU10", "12.80", "2.24","0.00","0.00", "omc_led_32_2w.jpg", "These High power LED GU10 lamps are excellent value and last up to 50000 hours.","LED GU10 Lamp.<BR><BR>Power Consumption 2W<BR><BR>Number of LED's 32<BR><BR>Voltage 240v<BR><BR>Colour Temp 6400k<BR><BR>Height 60mm<BR><BR>Width 50mm",
  "B116-0022","2 pack 32 LED GU10 (50mm) GU10", "12.80", "2.24","0.00","0.00", "omc_led_32_2w.jpg", "These High power LED GU10 lamps are excellent value and last up to 50000 hours.","LED GU10 Lamp.<BR><BR>Power Consumption 2W<BR><BR>Number of LED's 32<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 60mm<BR><BR>Width 50mm",
  "B116-0030","2 pack LED MR11 (35mm) MR11", "9.57", "1.67","0.00","0.00", "MR11.jpg", "These High power LED MR11 lamps are excellent value and last up to 50000 hours.","LED MR11 Lamp.<BR><BR>Power Consumption 1W<BR><BR>Number of LED's 15<BR><BR>Voltage 12v<BR><BR>Colour Temp 6400k<BR><BR>Height 42mm<BR><BR>Width 35mm",
  //"B116-0080","10 pack 15 LED MR16 (50mm) MR16", "48.34", "8.46","0.00","0.00", "MR16 3w Super LED.jpg", "These High power LED MR16 lamps are excellent value and last up to 50000 hours.","LED MR16 Lamp.<BR><BR>Power Consumption 1W<BR><BR>Number of LED's 15<BR><BR>Voltage 12v<BR><BR>Colour Temp 6400k<BR><BR>Height 56mm<BR><BR>Width 50mm",
  //"B116-0081","10 pack 32 LED MR16 (50mm) MR16", "78.17", "13.68","0.00","0.00", "MR16 3w Super LED.jpg", "These High power LED MR16 lamps are excellent value and last up to 50000 hours.","LED MR16 Lamp.<BR><BR>Power Consumption 2W<BR><BR>Number of LED's 32<BR><BR>Voltage 12v<BR><BR>Colour Temp 6400k<BR><BR>Height 56mm<BR><BR>Width 50mm",
  //"B116-0082","10 pack 1 Super LED MR16 (50mm) MR16", "138.63", "24.26","0.00","0.00", "MR16 3w Super LED.jpg", "These High power LED MR16 lamps are excellent value and last up to 50000 hours.","LED MR16 Lamp.<BR><BR>Power Consumption 3W<BR><BR>Number of LED's 1 super<BR><BR>Voltage 12v<BR><BR>Colour Temp 6400k<BR><BR>Height 45mm<BR><BR>Width 50mm",
  "B116-0813","10 pack LED PAR20 (65mm) ES", "54.69", "9.57","0.00","0.00", "LED Par 30.jpg", "These High power LED PAR lamps are excellent value and last up to 50000 hours.","LED PAR Lamp.<BR><BR>Power Consumption 1.3W<BR><BR>Number of LED's 20<BR><BR>Voltage 240v<BR><BR>Colour Temp 6400k<BR><BR>Height 90mm<BR><BR>Width 65mm",
  "B116-0814","10 pack LED PAR30 (95mm) ES", "107.39", "18.79","0.00","0.00", "LED Par 30.jpg", "These High power LED PAR lamps are excellent value and last up to 50000 hours.","LED PAR Lamp.<BR><BR>Power Consumption 5W<BR><BR>Number of LED's 50<BR><BR>Voltage 240v<BR><BR>Colour Temp 6400k<BR><BR>Height 90mm<BR><BR>Width 95mm",
  "B116-0815","10 pack LED PAR38 (122mm) ES", "254.63", "44.56","0.00","0.00", "LED Par 38.jpg", "These High power LED PAR lamps are excellent value and last up to 50000 hours.","LED PAR Lamp.<BR><BR>Power Consumption 10W<BR><BR>Number of LED's 120<BR><BR>Voltage 240v<BR><BR>Colour Temp 6400k<BR><BR>Height 135mm<BR><BR>Width 122mm",
  "B116-0818","10 pack LED PAR38 (122mm) ES", "116.60", "20.40","0.00","0.00", "LED Par 38.jpg", "These High power LED PAR lamps are excellent value and last up to 50000 hours.","LED PAR Lamp.<BR><BR>Power Consumption 5W<BR><BR>Number of LED's 50<BR><BR>Voltage 240v<BR><BR>Colour Temp 6400k<BR><BR>Height 135mm<BR><BR>Width 122mm"

],
  "LED&nbsp;Comfort&nbsp;Lamps","LED Par 30.jpg","Energy saving LED comfort lamps",
  [
  //"C117-0705","6 pack LED Candle Clear BC", "43.77", "7.66","0.00","0.00", "LED Candle Opal.jpg", "Available as replacements for candles golfballs and GLS, offering 50000 hours life expectancy.","LED Candle lamp for immediate savings in any application. ideal for use as background lighting.<BR><BR>Power Consumption 1W<BR><BR>Number of LED's 15<BR><BR>Finish Clear<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 105mm<BR><BR>Width 37mm",
  //"C117-0706","6 pack LED Candle Clear ES", "43.77", "7.66","0.00","0.00", "candle_es.jpg", "Available as replacements for candles golfballs and GLS, offering 50000 hours life expectancy.","LED Candle lamp for immediate savings in any application. ideal for use as background lighting.<BR><BR>Power Consumption 1W<BR><BR>Number of LED's 15<BR><BR>Finish Clear<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 105mm<BR><BR>Width 37mm",  
  "C117-0715","6 pack LED Candle Opal BC", "43.77", "7.66","0.00","0.00", "LED Candle Opal.jpg", "Available as replacements for candles golfballs and GLS, offering 50000 hours life expectancy.","LED Candle lamp for immediate savings in any application. ideal for use as background lighting.<BR><BR>Power Consumption 1W<BR><BR>Number of LED's 12<BR><BR>Finish Opal<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 97mm<BR><BR>Width 37mm",  
  "C117-0716","6 pack LED Candle Opal ES", "43.77", "7.66","0.00","0.00", "candle_es.jpg", "Available as replacements for candles golfballs and GLS, offering 50000 hours life expectancy.","LED Candle lamp for immediate savings in any application. ideal for use as background lighting.<BR><BR>Power Consumption 1W<BR><BR>Number of LED's 12<BR><BR>Finish Opal<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 97mm<BR><BR>Width 37mm",  
  //"C117-0717","6 pack LED Candle Opal SES", "43.77", "7.66","0.00","0.00", "LED Candle Opal.jpg", "Available as replacements for candles golfballs and GLS, offering 50000 hours life expectancy.","LED Candle lamp for immediate savings in any application. ideal for use as background lighting.<BR><BR>Power Consumption 1W<BR><BR>Number of LED's 12<BR><BR>Finish Opal<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 97mm<BR><BR>Width 37mm",  
  //"C117-0718","6 pack LED Candle Opal SBC", "43.77", "7.66","0.00","0.00", "LED Candle Opal.jpg", "Available as replacements for candles golfballs and GLS, offering 50000 hours life expectancy.","LED Candle lamp for immediate savings in any application. ideal for use as background lighting.<BR><BR>Power Consumption 1W<BR><BR>Number of LED's 12<BR><BR>Finish Opal<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 97mm<BR><BR>Width 37mm",  
  //"C117-0941","6 pack LED Golfball Opal BC", "35.40", "6.19","0.00","0.00", "LED Golfball.jpg", "Available as replacements for candles golfballs and GLS, offering 50000 hours life expectancy.","LED Golfball lamp for immediate savings in any application. ideal for use as background lighting.<BR><BR>Power Consumption 1W<BR><BR>Number of LED's 12<BR><BR>Finish Opal<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 94mm<BR><BR>Width 50mm",
  //"C117-0942","6 pack LED Golfball Opal ES", "35.40", "6.19","0.00","0.00", "LED Golfball.jpg", "Available as replacements for candles golfballs and GLS, offering 50000 hours life expectancy.","LED Golfball lamp for immediate savings in any application. ideal for use as background lighting.<BR><BR>Power Consumption 1W<BR><BR>Number of LED's 12<BR><BR>Finish Opal<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 94mm<BR><BR>Width 50mm",
  //"C117-0943","6 pack LED Golfball Opal SES", "35.40", "6.19","0.00","0.00", "LED Golfball.jpg", "Available as replacements for candles golfballs and GLS, offering 50000 hours life expectancy.","LED Golfball lamp for immediate savings in any application. ideal for use as background lighting.<BR><BR>Power Consumption 1W<BR><BR>Number of LED's 12<BR><BR>Finish Opal<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 94mm<BR><BR>Width 50mm",
  //"C117-0944","6 pack LED Golfball Opal SBC", "35.40", "6.19","0.00","0.00", "LED Golfball.jpg", "Available as replacements for candles golfballs and GLS, offering 50000 hours life expectancy.","LED Golfball lamp for immediate savings in any application. ideal for use as background lighting.<BR><BR>Power Consumption 1W<BR><BR>Number of LED's 12<BR><BR>Finish Opal<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 94mm<BR><BR>Width 50mm",
  //"C117-0951","6 pack LED Golfball Clear BC", "36.79", "6.44","0.00","0.00", "LED Golfball.jpg", "Available as replacements for candles golfballs and GLS, offering 50000 hours life expectancy.","LED Golfball lamp for immediate savings in any application. ideal for use as background lighting.<BR><BR>Power Consumption 1.2W<BR><BR>Number of LED's 18<BR><BR>Finish Clear<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 94mm<BR><BR>Width 50mm",
  //"C117-0952","6 pack LED Golfball Clear ES", "36.79", "6.44","0.00","0.00", "LED Golfball.jpg", "Available as replacements for candles golfballs and GLS, offering 50000 hours life expectancy.","LED Golfball lamp for immediate savings in any application. ideal for use as background lighting.<BR><BR>Power Consumption 1.2W<BR><BR>Number of LED's 18<BR><BR>Finish Clear<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 94mm<BR><BR>Width 50mm",
  //"C117-0507","6 pack LED GLS Opal BC", "43.77", "7.66","0.00","0.00", "LED GLS.jpg", "Available as replacements for candles golfballs and GLS, offering 50000 hours life expectancy.","LED GLS lamp for immediate savings in any application. ideal for use as background lighting.<BR><BR>Power Consumption 1W<BR><BR>Number of LED's 12<BR><BR>Finish Opal<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 102mm<BR><BR>Width 50mm",
  //"C117-0607","6 pack LED GLS Opal ES", "43.77", "7.66","0.00","0.00", "LED GLS.jpg", "Available as replacements for candles golfballs and GLS, offering 50000 hours life expectancy.","LED GLS lamp for immediate savings in any application. ideal for use as background lighting.<BR><BR>Power Consumption 1W<BR><BR>Number of LED's 12<BR><BR>Finish Opal<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 102mm<BR><BR>Width 50mm"

],
  "Energy&nbsp;Saving&nbsp;Dimmables","GLS Shape.jpg","Energy saving dimmable CFL's in a range of styles.",
  [
  //"C119-6515","6 pack Dimmable candle 7W (equiv. 25W) BC",      "40.05", "7.01","0.00","0.00", "19373R.jpg", "A dimmable candle that works with a conventional dimmer switch, variable dimming 40%-100%.","This lamp can be used in all applications with suitable incandescent lamp dimmers, 8000 hour lifetime.<BR><BR>Power Consumption 7W<BR><BR>Finish pearl<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 135mm<BR><BR>Width 40mm",
  //"C119-6516","6 pack Dimmable candle 7W (equiv. 25W) ES",      "40.05", "7.01","0.00","0.00", "candle_es.jpg", "A dimmable candle that works with a conventional dimmer switch, variable dimming 40%-100%.","This lamp can be used in all applications with suitable incandescent lamp dimmers, 8000 hour lifetime.<BR><BR>Power Consumption 7W<BR><BR>Finish pearl<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 135mm<BR><BR>Width 40mm",
  //"C119-6518","6 pack Dimmable candle 7W (equiv. 25W) SBC",      "40.05", "7.01","0.00","0.00", "Candle 11w SBC Pearl.jpg", "A dimmable candle that works with a conventional dimmer switch, variable dimming 40%-100%.","This lamp can be used in all applications with suitable incandescent lamp dimmers, 8000 hour lifetime.<BR><BR>Power Consumption 7W<BR><BR>Finish pearl<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 135mm<BR><BR>Width 40mm",
  //"C119-6517","6 pack Dimmable candle 7W (equiv. 25W) SES",      "40.05", "7.01","0.00","0.00", "Candle SES Pearl.jpg", "A dimmable candle that works with a conventional dimmer switch, variable dimming 40%-100%.","This lamp can be used in all applications with suitable incandescent lamp dimmers, 8000 hour lifetime.<BR><BR>Power Consumption 7W<BR><BR>Finish pearl<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 135mm<BR><BR>Width 40mm",
  "C119-6535","6 pack Dimmable candle 11W (equiv. 60W) BC",      "46.35", "8.11","0.00","0.00", "19373R.jpg", "A dimmable candle that works with a conventional dimmer switch, variable dimming 40%-100%.","This lamp can be used in all applications with suitable incandescent lamp dimmers, 8000 hour lifetime.<BR><BR>Power Consumption 11W<BR><BR>Finish pearl<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 140mm<BR><BR>Width 40mm",
  "C119-6536","6 pack Dimmable candle 11W (equiv. 60W) ES",      "46.35", "8.11","0.00","0.00", "candle_es.jpg", "A dimmable candle that works with a conventional dimmer switch, variable dimming 40%-100%.","This lamp can be used in all applications with suitable incandescent lamp dimmers, 8000 hour lifetime.<BR><BR>Power Consumption 11W<BR><BR>Finish pearl<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 140mm<BR><BR>Width 40mm",
  "C119-6538","6 pack Dimmable candle 11W (equiv. 60W) SBC",      "46.35", "8.11","0.00","0.00", "Candle 11w SBC Pearl.jpg", "A dimmable candle that works with a conventional dimmer switch, variable dimming 40%-100%.","This lamp can be used in all applications with suitable incandescent lamp dimmers, 8000 hour lifetime.<BR><BR>Power Consumption 11W<BR><BR>Finish pearl<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 140mm<BR><BR>Width 40mm",
  "C119-6537","6 pack Dimmable candle 11W (equiv. 60W) SES",      "46.35", "8.11","0.00","0.00", "Candle SES Pearl.jpg", "A dimmable candle that works with a conventional dimmer switch, variable dimming 40%-100%.","This lamp can be used in all applications with suitable incandescent lamp dimmers, 8000 hour lifetime.<BR><BR>Power Consumption 11W<BR><BR>Finish pearl<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 140mm<BR><BR>Width 40mm",
  
  //"C119-6514","6 pack Dimmable GLS 14W (equiv. 75W) BC",      "40.55", "7.10","0.00","0.00", "GLS Shape.jpg", "A dimmable GLS type lamp that works with a conventional dimmer switch, variable dimming 40%-100%.","This lamp can be used in all applications with suitable incandescent lamp dimmers, 8000 hour lifetime.<BR><BR>Power Consumption 14W<BR><BR>Finish pearl<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 150mm<BR><BR>Width 65mm",
  //"C119-6614","6 pack Dimmable GLS 14W (equiv. 75W) ES",      "40.55", "7.10","0.00","0.00", "GLS 14w ES.jpg", "A dimmable GLS type lamp that works with a conventional dimmer switch, variable dimming 40%-100%.","This lamp can be used in all applications with suitable incandescent lamp dimmers, 8000 hour lifetime.<BR><BR>Power Consumption 14W<BR><BR>Finish pearl<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 150mm<BR><BR>Width 65mm",

  //"C119-6109","6 pack Dimmable Stick Lamp 9W (equiv. 45W) BC",      "33.92", "5.94","0.00","0.00", "philex_19345R_7w_bc.jpg", "A dimmable stick lamp that works with a conventional dimmer switch, variable dimming 40%-100%.","This lamp can be used in all applications with suitable incandescent lamp dimmers, 8000 hour lifetime.<BR><BR>Power Consumption 9W<BR><BR>Finish pearl<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 125mm<BR><BR>Width 37mm",
  //"C119-6209","6 pack Dimmable Stick Lamp 9W (equiv. 45W) ES",      "33.92", "5.94","0.00","0.00", "minitubeES.jpg", "A dimmable stick lamp that works with a conventional dimmer switch, variable dimming 40%-100%.","This lamp can be used in all applications with suitable incandescent lamp dimmers, 8000 hour lifetime.<BR><BR>Power Consumption 9W<BR><BR>Finish pearl<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 125mm<BR><BR>Width 37mm",
  "C119-6113","6 pack Dimmable Stick Lamp 13W (equiv. 75W) BC",      "38.47", "6.73","0.00","0.00", "philex_19345R_7w_bc.jpg", "A dimmable stick lamp that works with a conventional dimmer switch, variable dimming 40%-100%.","This lamp can be used in all applications with suitable incandescent lamp dimmers, 8000 hour lifetime.<BR><BR>Power Consumption 13W<BR><BR>Finish pearl<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 155mm<BR><BR>Width 37mm",
  "C119-6213","6 pack Dimmable Stick Lamp 13W (equiv. 75W) ES",      "38.47", "6.73","0.00","0.00", "minitubeES.jpg", "A dimmable stick lamp that works with a conventional dimmer switch, variable dimming 40%-100%.","This lamp can be used in all applications with suitable incandescent lamp dimmers, 8000 hour lifetime.<BR><BR>Power Consumption 13W<BR><BR>Finish pearl<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 155mm<BR><BR>Width 37mm",

  "C119-6902","6 pack Dimmable Globe Lamp 11W (equiv. 60W) BC",      "44.60", "7.81","0.00","0.00", "Globe BC.jpg", "A dimmable Globe lamp that works with a conventional dimmer switch, variable dimming 40%-100%.","This lamp can be used in all applications with suitable incandescent lamp dimmers, 8000 hour lifetime.<BR><BR>Power Consumption 11W<BR><BR>Finish pearl<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 135mm<BR><BR>Width 75mm",
  "C119-6922","6 pack Dimmable Globe Lamp 11W (equiv. 60W) ES",      "44.60", "7.81","0.00","0.00", "Globe ES.jpg", "A dimmable Globe lamp that works with a conventional dimmer switch, variable dimming 40%-100%.","This lamp can be used in all applications with suitable incandescent lamp dimmers, 8000 hour lifetime.<BR><BR>Power Consumption 11W<BR><BR>Finish pearl<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 135mm<BR><BR>Width 75mm",
  
  //"C104-0001","Osram Dulux EL 15W (equiv. 100W)  Sensor BC", "19.08", "3.34","0.00","0.00", "osram_dulux_el_sensor_bc.jpg", "An energy saving lamp that automatically switches on a dusk and off again at dawn.","Two high quality sensors provide light at the right time. It is ideal for continuous lighting that is automatic, economical and reliable.<BR><BR>Extra long average life of 15,000 hours<BR><BR>Light sensor detects daylight on the basis of spectral distribution and is not influenced by its own light<BR><BR>Self test function on power up.",
  //"C104-0002","Osram Dulux EL 15W (equiv. 100W) Sensor ES", "19.08", "3.34","0.00","0.00", "osram_dulux_el_sensor_es.jpg", "An energy saving lamp that automatically switches on a dusk and off again at dawn.","Two high quality sensors provide light at the right time. It is ideal for continuous lighting that is automatic, economical and reliable.<BR><BR>Screw fitting<BR><BR>Extra long average life of 15,000 hours<BR><BR>Light sensor detects daylight on the basis of spectral distribution and is not influenced by its own light<BR><BR>Self test function on power up.",
  //"C105-0001","Osram Dulux EL 20W (equiv. 100W) Dimmable BC",     "16.13", "2.82","1.41","0.41", "osram_dulux_el_dim_bc_oos.jpg", "Now you can save energy and dim the light","This lamp can be used in all applications with suitable incandescent lamp dimmers.<BR><BR>Extra long average life of 15,000 hours<BR><BR>Variable dimming (from 100% to 15%).",
  //"C105-0002","Osram Dulux EL 20W (equiv. 100W) Dimmable ES",     "16.13", "2.82","1.41","0.41", "osram_dulux_el_dim_es_oos.jpg", "Now you can save energy and dim the light","This lamp can be used in all applications with suitable incandescent lamp dimmers.<BR><BR>Screw fitting<BR><BR>Extra long average life of 15,000 hours<BR><BR>Variable dimming (from 100% to 15%).",
  //"C106-0001","Osram Dulux EL 23W (equiv. 100W) Vario BC", "17.00", "2.98","0.00","0.00", "osram_dulux_el_vario_bc.jpg", "An energy saving lamp that can be varied without the need for dimmers","The integrated two stage dimmer function provides bright light or cosy atmospheric light at the flick of a switch.<BR><BR>By simply switching the lamp off and then on again its brightness can be reduced by half.<BR><BR>Power consumption is then reduced by about 60%<BR><BR>No dimming systems needed<BR><BR>Extra long average life of 15,000 hours."

],
  "Halogen&nbsp;12V&nbsp;&&nbsp;240V GU10","halogen_gu10.jpg","Halogen 12V and 240V GU10",
  [
  //"C118-9424","10 pack Halogen 20Watt 12Volt 36 degree",      "6.89", "1.21","0.00","0.00", "halogen_mr16.jpg", "High quality grade 'A' lamp 2000 hour lifetime.","2000 hour lifetime with a special reflective coating that reflects heat backwards. Smooth cool beam causes less dazzle.<BR><BR>Power Consumption 20W<BR><BR>Finish Clear<BR><BR>Voltage 12v<BR><BR>Colour Temp 2700k<BR><BR>Height 56mm<BR><BR>Width 50mm",
  //"C118-9426","10 pack Halogen 35Watt 12Volt 38 degree",      "6.89", "1.21","0.00","0.00", "halogen_mr16.jpg", "High quality grade 'A' lamp 2000 hour lifetime.","2000 hour lifetime with a special reflective coating that reflects heat backwards. Smooth cool beam causes less dazzle.<BR><BR>Power Consumption 35W<BR><BR>Finish Clear<BR><BR>Voltage 12v<BR><BR>Colour Temp 2700k<BR><BR>Height 56mm<BR><BR>Width 50mm",
  //"C118-9411","10 pack Halogen 50Watt 12Volt 24 degree",      "6.89", "1.21","0.00","0.00", "halogen_mr16.jpg", "High quality grade 'A' lamp 2000 hour lifetime.","2000 hour lifetime with a special reflective coating that reflects heat backwards. Smooth cool beam causes less dazzle.<BR><BR>Power Consumption 50W<BR><BR>Finish Clear<BR><BR>Voltage 12v<BR><BR>Colour Temp 2700k<BR><BR>Height 56mm<BR><BR>Width 50mm",
  //"C118-9412","10 pack Halogen 50Watt 12Volt 38 degree",      "6.89", "1.21","0.00","0.00", "halogen_mr16.jpg", "High quality grade 'A' lamp 2000 hour lifetime.","2000 hour lifetime with a special reflective coating that reflects heat backwards. Smooth cool beam causes less dazzle.<BR><BR>Power Consumption 50W<BR><BR>Finish Clear<BR><BR>Voltage 12v<BR><BR>Colour Temp 2700k<BR><BR>Height 56mm<BR><BR>Width 50mm",
  //"C118-9209","10 pack Halogen GU10 35Watt Flood",            "12.47", "2.18","0.00","0.00", "halogen_gu10.jpg", "1500 hours life, ceramic cap and aluminised reflectors","Ceramic cap and aluminised reflector to project heat forward and protect GU10 fittings.<BR><BR>Power Consumption 35W<BR><BR>Finish Clear<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 56mm<BR><BR>Width 50mm",
  //"C118-9478","10 pack Halogen GU10 50Watt Spot 26 degree",      "12.47", "2.18","0.00","0.00", "halogen_gu10.jpg", "1500 hours life, ceramic cap and aluminised reflectors.","Ceramic cap and aluminised reflector to project heat forward and protect GU10 fittings.<BR><BR>Power Consumption 50W<BR><BR>Finish Clear<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 56mm<BR><BR>Width 50mm",
  //"C118-9479","10 pack Halogen GU10 50Watt Flood 38 degree",      "12.47", "2.18","0.00","0.00", "halogen_gu10.jpg", " 1500 hours life, ceramic cap and aluminised reflectors.","Ceramic cap and aluminised reflector to project heat forward and protect GU10 fittings.<BR><BR>Power Consumption 50W<BR><BR>Finish Clear<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 56mm<BR><BR>Width 50mm",
  //"C118-0008","10 pack Halogen GU10 50Watt Flood 26 Budget",      "9.18", "1.61","0.00","0.00", "halogen_gu10.jpg", "1500 hours life, ceramic cap and aluminised reflectors.","Ceramic cap and aluminised reflector to project heat forward and protect GU10 fittings.<BR><BR>Power Consumption 50W<BR><BR>Finish Clear<BR><BR>Voltage 240v<BR><BR>Colour Temp 2700k<BR><BR>Height 56mm<BR><BR>Width 50mm"

],
  "Savings&nbsp;Electricity","eco_kettle.jpg","Household energy saving products and appliances",
  [
   "C200-0001","ElectriSave/Owl", "67.45", "11.80","0.00","0.00", "electrisave.jpg", "Learn how much it costs to use electrical appliances and how to use them more efficiently with this handy wireless electricity monitor.","The PowerSave changes the way you think about your personal electricity usage by providing you with instant information on the cost of every electrical appliance you use. The PowerSave also calculates the amount of the greenhouse gas (CO2) generated by your electricity useage. Current PowerSave users report savings of up to 25%. Show your children that turning a light on costs money!",
   "C200-0002","ElectriSave Sensor", "10.00", "1.75","0.00","0.00", "power_probe.jpg", "Extra sensor for the ElectriSave. Measure the total power usage in up to three mains feeds.","The PowerSave changes the way you think about your personal electricity usage by providing you with instant information on the cost of every electrical appliance you use. The PowerSave also calculates the amount of the greenhouse gas (CO2) generated by your electricity useage. Current PowerSave users report savings of up to 25%. Show your children that turning a light on costs money!",
   "C201-0001","Eco Kettle",      "44.78", "7.84","0.00","0.00", "eco_kettle.jpg",   "Save water, Save time, Save energy with the Eco Kettle. The right amount of water every time you boil.","Until now accurately measuring the amount of water to be boiled in a kettle has been all but impossible. The result? it is estimated that on average, we boil twice the volume of water needed every time, which means twice the energy. With a 3KW kettle that's the same as wasting the energy of around 50 light bulbs. <BR><BR>Simply fill up, then decide how much water to boil - from one cup to full capacity, at the touch of a button.<BR><BR><BR><BR>Guaranteed for use in non domestic environments",
   "C203-0001","Intelliplug",      "16.43", "2.87","0.00","0.00", "intelliplug.jpg",   "The intelligent desktop computer adaptor, Save energy and money - say goodbye to standby","Leaving electrical equipment on standby wastes energy and costs money. When your computer is switched on Intelliplug automatically provides power to the monitor, printer, speakers etc,. When your computer is turned off Intelliplug automatically switches off power from the peripherals, saving energy.<BR><BR>Ideal for monitors, scanners, desktop lamps, broadband modems, speakers, mobile phone chargers and games consoles<BR><BR>Plug and play no software required<BR><BR>Not suitable for laptops<BR><BR>MAC and PC compatible.",
   //"C203-0002","One click Intelligent Mains Panel",   "33.24", "5.82","0.00","0.00", "one_click.jpg",   "The intelligent desktop computer mains panel","Plug in your computer and all its peripherals and in just one click the clever mains panel powers everything on or off. This can save as much as 35 watts per hour, and up to 80 watts with some laser printers alone.",
   //"C204-0001","SavaPlug",      "22.04", "3.86","0.00","0.00", "savaplug.jpg",   "SavaPlug will make typical savings in electricity running costs of 20% when fitted to your domestic fridges and freezers.","The SavaPlug simply replaces the existing plug on the appliance. When the thermostat on the appliance switches on the motor to the pump the refrigerant around the system, full power is required. However, once the motor is running, full power is no longer needed. The SavaPlug senses this and reduces the flow of current.<BR><BR>Please see the SavaPlug compatibility list in the Product Literature section of EnergyShop.",
   //"C205-0001","Power Monitor PM230", "29.66", "5.19","0.00","0.00", "pm230.jpg", "Learn how much it costs to use individual electrical appliances with our basic plug in power monitor.","This budget power monitor provides you with instant information on the electricity cost of every electrical appliance you use, check what your television uses on standby - you'll be suprised. Survey each of your household electrical appliances, incorporate some of the lastest energy saving devices on our site and watch your electricity usage fall. Show your children that turning a on light or leaving the televison on costs money!",
   //"C206-0001","Solio Solar Charger - Black",  "55.78","9.76","0.00","0.00", "solioblk.jpg","Recharge your iPod, phone or mobile device virtually anywhere with the Solio charger.","The Solio is one of the most powerful solar devices on the market. Simply position the solar panels in direct sunlight - a full Solio delivers enough charge to extend your play time up to 9 hours, or fully charge your iPod with enough power left over to top up your mobile phone. Whether you are on a deserted island with no power socket, or on the move and can't charge your iPod or mobile, Solio is the perfect solution. Comes with female USB (for iPod), assorted mobile phone adapters, compatible with Nokia, Motorola and Samsung phones, a mini-USB cable for Blackberry, iRiver, GPS and smart phones, plus a female 12V car lighter socket. Solio will also charge a wide range of other products such as PDAs, Gameboy and other phones, cameras and portable electronic devices (may require additional tips). Never let your phone or portable power go down again, plug into the sun.",
   //"C206-0002","Solio Solar Charger - Silver",  "55.78", "9.76","0.00","0.00", "soliosil.jpg","Recharge your iPod, phone or mobile device virtually anywhere with the Solio charger.","The Solio is one of the most powerful solar devices on the market. Simply position the solar panels in direct sunlight - a full Solio delivers enough charge to extend your play time up to 9 hours, or fully charge your iPod with enough power left over to top up your mobile phone. Whether you are on a deserted island with no power socket, or on the move and can't charge your iPod or mobile, Solio is the perfect solution. Comes with female USB (for iPod), assorted mobile phone adapters, compatible with Nokia, Motorola and Samsung phones, a mini-USB cable for Blackberry, iRiver, GPS and smart phones, plus a female 12V car lighter socket.Solio will also charge a wide range of other products such as PDAs, Gameboy and other phones, cameras and portable electronic devices (may require additional tips). Never let your phone or portable power go down again, plug into the sun."

],

  "Savings&nbsp;Water","water_hippo.jpg","Water saving ideas to cut water and waste water bills",
  [
   "C301-0001","Interflush",    "19.00",  "3.33","0.00","0.00", "interflush.jpg",          "Only flush the amount of water needed. Up to a massive 47% water saving","Only flushes when the handle is held down, releasing the handle stops the flush (when the pan is clear). Only uses the water required. That is why nothing can flush a toilet with less water.<BR><BR>Up to a massive 47% water saving.",
   "C302-0001","Save A Flush (3 pack)",    "7.71",  "1.35","0.00","0.00", "sava_a_flush.jpg",          "Fitting one of these devices to your cistern will save water every time you flush. Suitable for 7.5 litre cisterns, see More...","If your cistern was installed before 1991 it will be 9 litres in volume or more. This type of cistern will work well with a hippo fitted which reduces the flush volume by approx 2.5 litres. If your WC was installed from 1992 to 2001 it will be 7.5 litres in volume and is suitable for the sava-a-flush. This reduces the flush volume by 1 litre. If your cistern has been installed more recently it will be 6 litres in volume (the current standard) and should not be reduced further.<BR><BR>The flush volume is normally stamped inside the cistern.",
   "C303-0001","Hippo The Water Saver (3 pack)",    "6.18",  "1.08","0.00","0.00", "water_hippo.jpg",          "Fitting one of these devices to your cistern will save water every time you flush. Suitable for 9 litre cisterns, see More...","If your cistern was installed before 1991 it will be 9 litres in volume or more. This type of cistern will work well with a hippo fitted which reduces the flush volume by approx 2.5 litres. If your WC was installed from 1992 to 2001 it will be 7.5 litres in volume and is suitable for the sava-a-flush. This reduces the flush volume by 1 litre. If your cistern has been installed more recently it will be 6 litres in volume (the current standard) and should not be reduced further.<BR><BR>The flush volume is normally stamped inside the cistern."
  ],
  "Savings&nbsp;Garden","butt_stand_diverter.jpg","Beat the hose pipe ban and keep your garden blooming this summer",
  [
  //"C401-0001","Harcostar Butt, Stand and Diverter package",    "85.87",  "15.03","0.00","0.00", "butt_stand_diverter.jpg",  "Unique child safety lid<BR>227 litres (50 gallons)","Size 227 litres (50 gallons)<BR><BR>Complete with butt and stand<BR><BR>Harcostar water diverter see spec C402-0001<BR><BR>Unique child safety lid and hose connector tap<BR><BR>Five year guarantee<BR><BR>Available in dark green<BR><BR>Ready drilled accessory connection points<BR><BR>Height 960mm<BR><BR>Diameter 600mm.",
  "C402-0001","Harcostar Water Diverter",    "16.68",  "2.92","0.00","0.00", "water_diverter.jpg",          "Universal rain trap for your downpipe.","This universal rain trap enables water to be diverted from you downpipe into your water butt. When the water butt is full it will redirect water back down your pipe and the water butt will not overfill. It is suitable for use on all round downpipes of<BR><BR>63, 68, 80 and 100mm.<BR><BR>Can also be used on square down pipes of <BR><BR>61 and 65mm.",
  "C403-0001","Harcostar Child Safe Water Magnum",    "83.66",  "14.64","0.00","0.00", "child-safe-water-magnum.jpg","Unique child safety lid<BR>350 litres (75 gallons)","Size 350 litres (75 gallons)<BR><BR>Unique child safety lid and hose connector tap<BR><BR>Five year guarantee<BR><BR>Available in dark green<BR><BR>Ready drilled accessory connection points<BR><BR>Height 1200mm<BR><BR>Diameter 780mm.",
  "C404-0001","Harcostar 700 ltr Water Tank ",    "202.38",  "35.42","23.51","23.51", "700-ltr-water-tank.jpg",  "700 litres (150 gallons)","Size 700 litres (150 gallons)<BR><BR>Five year guarantee<BR><BR>Available in dark green<BR><BR>Ready drilled accessory connection points<BR><BR>Height 850mm<BR><BR>Width 1500mm<BR><BR>Depth 650mm.",
  "C405-0001","Harcostar Space Sava Water Butt",    "53.63",  "9.38","0.00","0.00", "space-sava-water-butt.jpg",   "100 litres (22 gallons)","Size 100 litres (22 gallons)<BR><BR>Five year guarantee<BR><BR>Available in dark green<BR><BR>Ready drilled accessory connection points<BR><BR>Height 940mm<BR><BR>Width 380mm<BR><BR>Depth 380mm.",
  "C406-0001","Water Diverter System",    "601.32",  "105.23","0.00","0.00", "gray_diverter.jpg", "The hosepipe ban buster, gray water diverter system","The average family of four wastes 3000 litres of gray water a week down the drain..use this water from your bath and shower to irrigate your garden.<BR><BR>Pump automatically diverts waste water to garden<BR><BR>Compact and robust<BR><BR>Built in primary filtration<BR><BR>Easy to clean<BR><BR>No smell<BR><BR>Call us on 0116 2627370 for more information.",
  "C407-0001","Water Accumulator System",    "1456.46",  "254.88","0.00","0.00", "gray_water.jpg", "The hosepipe ban buster gray water irrigation system","The average family of four wastes 3000 litres of gray water a week down the drain. now you can comply with the hosepipe ban, save money and save your plants with recycled household gray water.<BR><BR>Compact and robust<BR><BR>Built in primary filtration<BR><BR>Easy to clean<BR><BR>No smell<BR><BR>Call us on 0116 2627370 for more information.",
  "C408-0001","Intelligent Drip Irrigation System",    "155.16",  "27.15","0.00","0.00", "gray_biodrip.jpg", "Biodrip landscape irrigation line","Biodrip is the most efficient and accurate self cleaning watering system available today<BR><BR>Recommended for flower beds<BR><BR>Ideal for slops and awkward areas<BR><BR>Waters directly onto the root zone<BR><BR>Extends flowering period and plant health<BR><BR>Call us on 0116 2627370 for more information."
],
  "Save-It-Easy","saveiteasy.jpg","Save-it-easy retrofit e-ballasts",
  [
  "C501-0708","Save-it-Easy",      "17.28", "3.02","0.00","0.00", "saveiteasy.jpg",   "Save-it-easy retrofit e-ballasts enable users to re-lamp existing fluorescent luminaires with high efficiency T5 and T8 tubes.","The new T5 and T8 high frequency triphosphor tubes which save-it-easy conversion units enable you to install in existing luminaires, give a light output equivalent to that of older tubes at dramatically lower electrical consumption. Energy savings range from 26% to 56% depending on application and low initial cost plus reduced maintenance gives payback often in less than 12 months.<BR><BR>Conversions available<BR><BR>8 feet T12 125W<BR><BR>6 feet T12 85W / 6 feet T8 70W<BR><BR>5 feet T12 65W/T8 58W<BR><BR>4 feet T12 40W/T8 36W<BR><BR>2 feet T8 18W<BR><BR>Please call to discuss your requirements."   
  
],
  "Heating&nbsp;Products","old_logmaker.jpg","Keep you house warm this winter by generating heat for free",
  [
  "C601-0001","Heatkeeper Radiator Panels",    "33.62",  "5.88","0.00","0.00", "heatkeeper.jpg",          "Reduce heat loss from your home and cut your energy bills by up to 15%","10 panel Heatkeeper pack (typically enough for 5 radiators). Each panel measures 44cm (wide) by 69cm (deep) on average two heatkeeper panels will be used per radiator. Simply cut the panels to the required size and fit behind your radiator.",
  "C602-0001","Original LogMaker",    "37.04",  "6.48","0.00","0.00", "old_logmaker.jpg",          "Obtain free heat from old newspapers","Easy and safe to use - just soak the paper, place into the mould and squeeze. After complete drying, the log will burn as well as wood for up to an hour at a controlled rate in a fire grate or woodburning stove. Made in Britain, not to be confused with other inferior versions.",
  "C603-0001","New LogMaker",    "25.84",  "4.52","0.00","0.00", "new_logmaker.jpg",          "Quickly turn your household burnable waste into free fuel logs for your open fire.","The logmaker is incredibly simple and easy to use. You and your family will have great fun creating these logs from waste paper, cardboard, dry sticks and sawdust etc. and then watching them burn. Logs burn from between 10 minutes to an hour depending upon contents and can be burned straight away.",
  "C604-0001","Chimney Balloon Small Lined Flue",    "24.87",  "4.35","0.00","0.00", "chimney_balloon.jpg",          "The simple cost effective way to stop draughts, heat loss, soot, debris, bird mess and reduce noise. For chimney sizes up to 23cm x 23cm.","The chimney balloon is completely safe and is designed to be used again and again. A cheap and effective solution to the common problems of draughts, heat loss, soot, debris, bird mess and it also reduces noise. For chimney sizes up to 38cm x 23cm.",
  "C604-0002","Chimney Balloon Small",    "24.87",  "4.35","0.00","0.00", "chimney_balloon.jpg",          "The simple cost effective way to stop draughts, heat loss, soot, debris, bird mess and reduce noise. For chimney sizes up to 38cm x 23cm.","The chimney balloon is completely safe and is designed to be used again and again. A cheap and effective solution to the common problems of draughts, heat loss, soot, debris, bird mess and it also reduces noise. For chimney sizes up to 38cm x 23cm.",
  "C604-0003","Chimney Balloon Medium",    "27.16",  "4.75","0.00","0.00", "chimney_balloon.jpg",          "The simple cost effective way to stop draughts, heat loss, soot, debris, bird mess and reduce noise. For chimney sizes up to 60cm x 30cm.","The chimney balloon is completely safe and is designed to be used again and again. A cheap and effective solution to the common problems of draughts, heat loss, soot, debris, bird mess and it also reduces noise.",
  "C604-0004","Chimney Balloon Large",    "30.60",  "5.36","0.00","0.00", "chimney_balloon.jpg",          "The simple cost effective way to stop draughts, heat loss, soot, debris, bird mess and reduce noise. For chimney sizes up to 90cm x 38cm","The chimney balloon is completely safe and is designed to be used again and again. A cheap and effective solution to the common problems of draughts, heat loss, soot, debris, bird mess and it also reduces noise.",
  "C604-0005","Chimney Balloon Handgrip",    "13.14",  "2.30","0.00","0.00", "balloon_handgrip.jpg",          "Handgrip extension adds 40cm to the tube used for inflating balloons in situ."," The Chimney balloon.",
  "C604-0006","Chimney Balloon Hose",    "6.72",  "1.18","0.00","0.00", "balloon_hose.jpg",          "Enables inflation of the chimney balloon in situ.","The Chimney balloon."
],
  //"Vehicle&nbsp;Fuel&nbsp;Products","vow2d_1.jpg","A range of SVO / WVO vegetable oil Biodiesel conversion products for your diesel car",
  //[
  //"C701-0001","Vegetable Oil SVO / WVO / Biodiesel Conversion Kit",      "84.26", "14.74","8.00","2.00", "vow2d_1.jpg",   "2d Unit, twin plug, twin chamber 90 deg heater","Full kit no other parts required. The 2d version provides direct post and indirect pre filter oil heating. Designed to give almost instant hot oil to the injector pump, also the hot oil aids filtering. Recommended for vechiles with water heated filters. Power requirements 26A/300W. Fully automatic, turns off when the vegetable oil reaches working temperature. Please contact for full details.",
  //"C702-0001","Vegetable Oil SVO / WVO / Biodiesel Conversion Kit",      "84.26", "14.74","8.00","2.00", "vow2f_1.jpg",   "2f Unit, twin plug single chamber water assisted 70 deg heater","Full kit no other parts required. The 2f provides direct pre or post filter oil heating with coolant assisted oil heating. This is useful in vehicles without water heated filters. Power requirements 26A/300W. Fully automatic, turns off when the vegetable oil reaches working temperature. Please contact for full details.",
  //"C703-0001","5 Micron Sock WVO Filter",      "11.06", "1.94","1.41","0.41", "sock_filter.jpg",   "Washable polypropylene 420 mm long 170 mm Dia"," Waste vegetable oil filter to be used with the 25 micron sock filter. The 25 micron filter is placed inside the 5 micron filter, waste vegetable oil is then placed inside the 25 micron filter and you get WVO filtered to 5 microns. Can be used individually.",
  //"C703-0002","25 Micron Sock WVO Pre-Filter",      "11.06", "1.94","1.41","0.41", "sock_filter.jpg",   "Washable polypropylene 420 mm long 122 mm Dia","Waste vegetable oil filter to be used with the 5 micron sock filter. The 25 micron filter is placed inside the 5 micron filter, waste vegetable oil is then placed inside the 25 micron filter and you get WVO filtered to 5 microns. Can be used individually.",
  //"C704-0001","Veggi-Boost",      "21.28", "3.72","2.08","1.18", "veggi-boost.jpg",   "Cetane Improver to reduce smoke and help cold starting","Veggi-Boost combustion enhancer 500ml. Veggi-Boost is a Cetane improver and is added at about 0.1% volume. Just a tiny amount has a large effect, it aids detonation enabling vegetable oil to be used more readily in a diesel engine. Also great if you're thinning veg oil down with petrol.<BR><BR>Reduces Smoke<BR>Easier cold starting in winter<BR>Increases power<BR>Compensates for blends with Petrol",
  //"C705-0001","Redline 85 Plus","10.20", "1.79","1.79","0.86", "85_plus.jpg", "Diesel fuel conditioner and Cetane improver","Contains extremely powerful lubricants, detergents, seal conditioners, fuel stabilizers and rust preventers. Contains additional Cetane improver that boosts the fuel by 5-9 cetane numbers."
//],

"Solar&nbsp;Water&nbsp;Heating","solar_20.jpg","A range of quality solar water heating panels and kits incorporating the latest high efficiency vacuume tube solar heat pipes",
  [
  "C901-0001","20 Tube Solar Water Heating Panel Only",      "532.45", "93.18","0.00","0.00", "solar_20.jpg",   "A quality solar water heating panel incorporating the latest high efficiency vacuum tube solar heat pipes. 30 tube panels on request.","These panels have been tested in Switzerland by SPF and tested to BS EN 12975. These are 20 tube 47mm diameter 1.5m length heat pipes with a frame area of 2.25m2. Depending on mounting requirements we can supply either roof mounting kits for pitched roofs or A frame mounting kits for flat roofs. In the summer months they can generate up to 10kWh. The physical size of the panel is 1760x1500x130mm. Please contact us for full details, we will be happy to take your call.<BR><BR>For technical information on these panels please see the solar_panel_information document in the product literature section.<BR><BR>For the DIY fitting guide, please see the DIY_Solar_Heating document in the product literature section of this web site.",
  "C902-0001","Basic 20 Tube Solar DIY Kit",      "878.06", "153.66","0.00","0.00", "solar_20.jpg",   "A quality solar water heating kit incorporating the latest high efficiency vacuum tube solar heat pipes","Full kit, only copper pipes required. <BR><BR>The kit comprises<BR><BR>20 tube panel<BR>roof mounting kit<BR>Retro fit coil (insert in place of imersion heater for quick installation)<BR>Solar controller<BR>Circulation pump and lation valves<BR>non-return valve<BR>pressure system kit<BR>10m armaflex HT insulation.<BR><BR>Please contact for full details, we will be happy to take your call.<BR><BR>For information on these panels please see the solar_panel_information document in the product literature section.<BR><BR>For the DIY fitting guide please see the DIY_Solar_Heating document in the product literature section of this web site.",
  "C903-0001","Deluxe 20 Tube Solar DIY Kit (incl twin coil tank)",      "1370.64", "239.86","0.00","0.00", "solar_20.jpg",   "A quality solar water heating kit incorporating the latest high efficiency vacuum tube solar heat pipes","Full kit, only copper pipes required.<BR><BR>The kit comprises<BR><BR>20 tube panel<BR>roof mounting kit<BR>Twin coil 170 litre hot water cylinder double insulated<BR>Solar controller<BR>Circulation pump and isolation valves<BR>anti-syphoning valve<BR>pressure system kit<BR>10m armaflex HT insulation.<BR><BR>Please contact for full details, we will be happy to take your call.<BR><BR>For information on these panels please see the solar_panel_information document in the product literature section.<BR><BR>For the DIY fitting guide please see the DIY_Solar_Heating document in product literature section of this web site.",
  "C903-0002","2 Panel Deluxe Solar DIY Kit",      "1770.43", "309.82","0.00","0.00", "solar_20.jpg",   "A quality solar water heating kit incorporating the latest high efficiency vacuum tube solar heat pipes for hot water and under floor heating","Full kit, only copper pipes required.<BR><BR>The kit comprises<BR><BR>Two 20 tube panels<BR>Two roof mounting kits<BR>Twin coil 170 litre hot water cylinder double insulated<BR>Solar controller<BR>Circulation pump and isolation valves<BR>non-return valve<BR>pressure system kit<BR>10m armaflex HT insulation.<BR><BR>Please contact for full details, we will be happy to take your call.<BR><BR>For information on these panels please see the solar_panel_information document in the product literature section.<BR><BR>For the DIY fitting guide please see the DIY_Solar_Heating document in product literature section of this web site.",
  "C904-0001","Solar Installation",      "2123.50", "371.61","0.00","0.00", "installation.jpg",   "We can provide consultancy or do part installations, for example, attach the solar panel to the roof. Contact us with your exact requirements.","Many people are happy to do the plumbing but need help with the electrics or attaching the panel to the roof. We can install in Leicestershire and Rutland and throughout the rest of the country via a network of installers.<BR><BR>Example jobs, please call for a quote..<BR><BR>Full install<BR>Attach solar pannel to roof<BR>Fill, Leak check and commission system<BR>Plumb in new cylinder<BR><BR>Other work undertaken on request",
  
"C905-0001","Standard Vented 123 Litre Copper Solar Cylinder",      "508.16", "88.93","0.00","0.00", "solar_cylinder.jpg",   "This 1050x400mm twin coil solar cylinder is specifically designed to work with the domestic heating system","These cylinders are UK manufactured with either two or three coils. One or two to transfer heat from the central heating boiler or solid fuel stove and the other to transfer heat via a high efficiency finned tube from the solar panels. In addition to the standard two or three coil tank, you can specify thermal store coils for mains pressure hot water, Shower coils, underfloor heating coil and triple insulation.<BR><BR>Boiler coil manufactured to BS 1566<BR>boiler coil fitted with 28mm or 22mm compression connections<BR>Solar coil fitted with 22mm or 15mm compression fittings",
  "C905-0002","Standard Vented 144 Litre Copper Solar Cylinder",      "504.82", "88.34","0.00","0.00", "solar_cylinder.jpg",   "This 1050x450mm twin coil solar cylinder is specifically designed to work with the domestic heating system","These cylinders are UK manufactured with either two or three coils. One or two to transfer heat from the central heating boiler or solid fuel stove and the other to transfer heat via a high efficiency finned tube from the solar panels. In addition to the standard two or three coil tank, you can specify thermal store coils for mains pressure hot water, Shower coils, underfloor heating coil and triple insulation.<BR><BR>Boiler coil manufactured to BS 1566<BR>boiler coil fitted with 28mm or 22mm compression connections<BR>Solar coil fitted with 22mm or 15mm compression fittings",
  "C905-0003","Standard Vented 150 Litre Copper Solar Cylinder",      "514.29", "90.00","0.00","0.00", "solar_cylinder.jpg",   "This 1300x400mm twin coil solar cylinder is specifically designed to work with the domestic heating system","These cylinders are UK manufactured with either two or three coils. One or two to transfer heat from the central heating boiler or solid fuel stove and the other to transfer heat via a high efficiency finned tube from the solar panels. In addition to the standard two or three coil tank, you can specify thermal store coils for mains pressure hot water, Shower coils, underfloor heating coil and triple insulation.<BR><BR>Boiler coil manufactured to BS 1566<BR>boiler coil fitted with 28mm or 22mm compression connections<BR>Solar coil fitted with 22mm or 15mm compression fittings",
  "C905-0004","Standard Vented 172 Litre Copper Solar Cylinder",      "520.08", "91.01","0.00","0.00", "solar_cylinder.jpg",   "This 1500x400mm twin coil solar cylinder is specifically designed to work with the domestic heating system","These cylinders are UK manufactured with either two or three coils. One or two to transfer heat from the central heating boiler or solid fuel stove and the other to transfer heat via a high efficiency finned tube from the solar panels. In addition to the standard two or three coil tank, you can specify thermal store coils for mains pressure hot water, Shower coils, underfloor heating coil and triple insulation.<BR><BR>Boiler coil manufactured to BS 1566<BR>boiler coil fitted with 28mm or 22mm compression connections<BR>Solar coil fitted with 22mm or 15mm compression fittings",
  "C905-0005","Standard Vented 200 Litre Copper Solar Cylinder",      "578.49", "101.24","0.00","0.00", "solar_cylinder.jpg",   "This 1400x450mm twin coil solar cylinder is specifically designed to work with the domestic heating system","These cylinders are UK manufactured with either two or three coils. One or two to transfer heat from the central heating boiler or solid fuel stove and the other to transfer heat via a high efficiency finned tube from the solar panels. In addition to the standard two or three coil tank, you can specify thermal store coils for mains pressure hot water, Shower coils, underfloor heating coil and triple insulation<BR><BR>Boiler coil manufactured to BS 1566<BR>boiler coil fitted with 28mm or 22mm compression connections<BR>Solar coil fitted with 22mm or 15mm compression fittings",
  "C905-0006","Standard Vented 210 Litre Copper Solar Cylinder",      "589.25", "103.12","0.00","0.00", "solar_cylinder.jpg",   "This 1800x400mm twin coil solar cylinder is specifically designed to work with the domestic heating system","These cylinders are UK manufactured with either two or three coils. One or two to transfer heat from the central heating boiler or solid fuel stove and the other to transfer heat via a high efficiency finned tube from the solar panels. In addition to the standard two or three coil tank, you can specify thermal store coils for mains pressure hot water, Shower coils, underfloor heating coil and triple insulation<BR><BR>Boiler coil manufactured to BS 1566<BR>boiler coil fitted with 28mm or 22mm compression connections<BR>Solar coil fitted with 22mm or 15mm compression fittings",
  "C906-0001","Retro Fit Solar Copper Cylinder Coil",      "112.26", "19.64","0.00","0.00", "retrofit_coil.jpg",   "This 0.65m long coil fits into the cylinder in place of the immersion heater for a quick and easy solar install.","This coil takes the place of a twin coil water cylinder. Although less efficient than a twin coil hot water cylinder, it saves the hassle and expense of replacing the whole cylinder."

],

"Wind&nbsp;Turbines","wind_power.jpg","A range of chinese manufactured wind turbines at the cheapest possible prices from £299",
  [
  "C111-0001","12V 200W Wind Turbine Kit",      "418.35", "73.21","0.00","0.00", "wind_power.jpg",   "This low cost 200W system can provide substantial amounts of power even in average wind conditions","The 200W wind generator kits include<BR><BR>Wind generator, hub and fixed blades. Furls out of wind to avoid damage in high winds.<BR> 3 section 6m tower<BR>Guy wires and tensioners<BR>Charge controller and optional dump load<BR>220v mains inverter.<BR><BR>The only other things you will need to install this turbine are a set of deep cycle batteries, a diversion load and cement for the foundations. We can supply these items on request.<BR><BR>Max power 300w<BR>Start wind speed 3m/s<BR>Rated wind speed 6m/s<BR>Rotor diameter 2.20m<BR>Rotor speed 450rpm<BR>3 blades<BR>Overspeed protection auto furl<BR> Weight 75kg<BR><BR>Installation instructions and images of turbine components are available in the product literature section of this web site. Please have a look or contact us for full details.",
  "C111-0002","24V 200W Wind Turbine Kit",      "339.24", "59.37","0.00","0.00", "wind_power.jpg",   "This low cost 200W system can provide substantial amounts of power even in average wind conditions","The 200W wind generator kits include<BR><BR>Wind generator, hub and fixed blades. Furls out of wind to avoid damage in high winds.<BR> 3 section 6m tower<BR>Guy wires and tensioners<BR>Charge controller and optional dump load<BR>220v mains inverter.<BR><BR>The only other things you will need to install this turbine are a set of deep cycle batteries, a diversion load and cement for the foundations. We can supply these items on request.<BR><BR>Max power 300w<BR>Start wind speed 3m/s<BR>Rated wind speed 6m/s<BR>Rotor diameter 2.20m<BR>Rotor speed 450rpm<BR>3 blades<BR>Overspeed protection auto furl<BR> Weight 75kg<BR><BR>Installation instructions and images of turbine components are available in the product literature section of this web site. Please have a look or contact us for full details.",
  "C111-0003","24V 500W Wind Turbine Kit",      "613.07", "107.29","0.00","0.00", "wind_power.jpg",   "This low cost 500W system can provide substantial amounts of power even in average wind conditions","The 500W wind generator kits include<BR><BR>Wind generator, hub and fixed blades. Furls out of wind to avoid damage in high winds.<BR>3 section 6m tower<BR>Guy wires and tensioners<BR>Charge controller and optional dump load<BR>220v mains inverter.<BR><BR>The only other things you will need to install this turbine are a set of deep cycle batteries, a diversion load and cement for the foundations. We can supply these items on request.<BR><BR>Max power 700w<BR>Start wind speed 3m/s<BR>Rated wind speed 8m/s<BR>Rotor diameter 2.70m<BR>Rotor speed 400rpm<BR>3 blades<BR>Overspeed protection auto furl<BR> Weight 125kg<BR><BR>Installation instructions and images of turbine components are available in the product literature section of this web site. Please have a look or contact us for full details.",
  "C111-0004","36V 500W Wind Turbine Kit",      "558.31", "97.71","0.00","0.00", "wind_power.jpg",   "This low cost 500W system can provide substantial amounts of power even in average wind conditions","The 500W wind generator kits include<BR><BR>Wind generator, hub and fixed blades. Furls out of wind to avoid damage in high winds.<BR>3 section 6m tower<BR>Guy wires and tensioners<BR>Charge controller and optional dump load<BR>220v mains inverter.<BR><BR>The only other things you will need to install this turbine are a set of deep cycle batteries, a diversion load and cement for the foundations. We can supply these items on request.<BR><BR>Max power 700w<BR>Start wind speed 3m/s<BR>Rated wind speed 8m/s<BR>Rotor diameter 2.70m<BR>Rotor speed 400rpm<BR>3 blades<BR>Overspeed protection auto furl<BR> Weight 125kg<BR><BR>Installation instructions and images of turbine components are available in the product literature section of this web site. Please have a look or contact us for full details.",
  "C111-0005","48V 1KW Wind Turbine Kit",      "801.72", "140.30","0.00","0.00", "wind_power.jpg",   "This low cost 1KW system can provide substantial amounts of power even in average wind conditions","The 1kW wind generator kits include<BR><BR>Wind generator, hub and fixed blades. Furls out of wind to avoid damage in high winds.<BR>3 section 6m tower<BR>Guy wires and tensioners<BR>Charge controller and optional dump load<BR>220v mains inverter.<BR><BR>The only other things you will need to install this turbine are a set of deep cycle batteries, a diversion load and cement for the foundations. We can supply these items on request.<BR><BR>Max power 1.5kW<BR>Start wind speed 3m/s<BR>Rated wind speed 9m/s<BR>Rotor diameter 3.10m<BR>Rotor speed 400rpm<BR>3 blades<BR>Overspeed protection auto furl<BR>Weight 180kg<BR><BR>Installation instructions and images of turbine components are available in the product literature section of this web site. Please have a look or contact us for full details."

],

"Energy&nbsp;Monitoring","electrisave.jpg","Save up to 25% on your electricity bills with the award winning PowerSave",
  [
"C802-0001","ElectriSave","67.45", "11.80","0.00","0.00", "electrisave.jpg", "Learn how much it costs to use electrical appliances and how to use them more efficiently with this handy wireless electricity monitor.","The ElectriSave changes the way you think about your personal electricity usage by providing you with instant information on the cost of every electrical appliance you use. The PowerSave also calculates the amount of the greenhouse gas CO2 generated by your electricity use. Current PowerSave users report savings of up to 25%.",
"C802-0002","Power Monitoring Single Phase", "483.69", "84.65","0.00","0.00", "power_mon1.jpg","Monitor your electricity usage and start saving money. Combined Gas, water and electricity monitoring also available.","This is a specialist product for single phase monitoring and logging of your power usage, suppliers tariffs can be checked against your actual usage, please go to http://www.netcommander.biz/energy.html for more information or call Bob on 0116 2627370 for more information.",
"C802-0003","Power Monitoring Three Phase", "571.49",  "100.01","0.00","0.00", "power_mon1.jpg", "Monitor your electricity usage and start saving money. Combined Gas, water and electricity monitoring also available.","This is a specialist product for three phase monitoring and logging of your power usage, suppliers tariffs can be checked against your actual usage, please go to http://www.netcommander.biz/energy.html for more information or call Bob on 0116 2627370 for more information.",
"C802-0004","Power Monitor Wireless Ethernet Option", "85.88", "15.03","0.00","0.00", "power_mon1.jpg","Wireless attach your Power Monitor.","The wireless option for the Power Monitor allows you to connect the Power Monitor wirelessly to your network , please go to http://www.netcommander.biz/energy.html for more information or call Bob on 0116 2627370 for more information."

]]);

setFAQ([
  "Why can't I add items to the basket?",              "This site uses cookies, ensure these are allowed in your browser settings.",
  "Why is the basket price more than the item price?", "The basket shows the total price including VAT and shipping (UK only).",
  "What are the shipping costs?",                      "All shipping costs are calculated on a per item basis (UK only) and are shown in the basket.",
  "Do you ship outside the UK?",                       "Yes. However, only UK shipping costs are shown so you must place your order and contact us for exact shipping costs prior to payment.",
  "Do you accept VISA cards as payment?",              "We accept a range of cards through PAYPAL, payment can be sent directly via PAYPAL when completing an order.",
  "Do you accept other methods of payment?",           "When completing an order, if payment is not received via PAYPAL, we will contact you to make alternative arrangements."
]);


//-----------------------------------------------------------------------------------//
// Run Immediately...
//-----------------------------------------------------------------------------------//
addBasketHideCSS();
addDescriptionHideCSS();
addFAQHideCSS();
addLookAndFeelCSS();
getEShopCookie();

//-----------------------------------------------------------------------------------//