diff --git a/quotenik8oct09.sql b/quotenik8oct09.sql deleted file mode 100755 index ae58d483..00000000 --- a/quotenik8oct09.sql +++ /dev/null @@ -1,1248 +0,0 @@ --- phpMyAdmin SQL Dump --- version 2.11.8.1deb1 --- http://www.phpmyadmin.net --- --- Host: localhost --- Generation Time: Oct 08, 2009 at 07:35 PM --- Server version: 5.0.67 --- PHP Version: 5.2.10 - -SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; - - -/*!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 */; - --- --- Database: `quotenik` --- - --- -------------------------------------------------------- - --- --- Table structure for table `acos` --- - -CREATE TABLE IF NOT EXISTS `acos` ( - `id` int(10) NOT NULL auto_increment, - `parent_id` int(10) default NULL, - `model` varchar(255) default NULL, - `foreign_key` int(10) default NULL, - `alias` varchar(255) default NULL, - `lft` int(10) default NULL, - `rght` int(10) default NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; - --- --- Dumping data for table `acos` --- - - --- -------------------------------------------------------- - --- --- Table structure for table `addresses` --- - -CREATE TABLE IF NOT EXISTS `addresses` ( - `id` int(11) NOT NULL auto_increment, - `address` text NOT NULL COMMENT 'street or unit number and street name', - `city` varchar(255) NOT NULL COMMENT 'Suburb / City', - `state_id` int(11) NOT NULL COMMENT 'State foreign Key', - `country_id` int(11) NOT NULL COMMENT 'Country foreign Key', - `customer_id` int(11) NOT NULL COMMENT 'Customer foreign key', - `type` varchar(255) NOT NULL COMMENT 'either bill / ship / both', - `postcode` varchar(50) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ; - --- --- Dumping data for table `addresses` --- - -INSERT INTO `addresses` (`id`, `address`, `city`, `state_id`, `country_id`, `customer_id`, `type`, `postcode`) VALUES -(1, '101 Some St', 'SomeTown', 1, 1, 1, '2', ''), -(2, '101 Some St', 'SomeTown', 2, 1, 2, '2', '2222636'), -(3, 'Some Other Address', 'SomeOtherTown', 7, 1, 1, '0', '2520'), -(4, '101 billing address lane\r\n', 'BillingLand', 1, 1, 3, '0', '15859'), -(5, '', '', 1, 1, 4, '0', ''), -(6, '101 GNB St', 'New York City', 9, 4, 11, '0', '213515'), -(7, '1515912 Another St', 'Small Town', 9, 4, 11, '1', '2159150'), -(8, '101 Mad good Drive', 'Sydney', 1, 1, 12, '1', '2195501'), -(9, '101010110', '01010101', 1, 1, 16, '0', '105105501'); - --- -------------------------------------------------------- - --- --- Table structure for table `aros` --- - -CREATE TABLE IF NOT EXISTS `aros` ( - `id` int(10) NOT NULL auto_increment, - `parent_id` int(10) default NULL, - `model` varchar(255) default NULL, - `foreign_key` int(10) default NULL, - `alias` varchar(255) default NULL, - `lft` int(10) default NULL, - `rght` int(10) default NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ; - --- --- Dumping data for table `aros` --- - -INSERT INTO `aros` (`id`, `parent_id`, `model`, `foreign_key`, `alias`, `lft`, `rght`) VALUES -(1, NULL, 'Group', 4, NULL, 1, 4), -(2, NULL, 'Group', 5, NULL, 5, 8), -(3, NULL, 'Group', 6, NULL, 9, 14), -(4, 3, 'User', 7, NULL, 10, 11), -(5, 3, 'User', 8, NULL, 12, 13), -(6, 1, 'User', 9, NULL, 2, 3), -(7, 2, 'User', 10, NULL, 6, 7); - --- -------------------------------------------------------- - --- --- Table structure for table `aros_acos` --- - -CREATE TABLE IF NOT EXISTS `aros_acos` ( - `id` int(10) NOT NULL auto_increment, - `aro_id` int(10) NOT NULL, - `aco_id` int(10) NOT NULL, - `_create` varchar(2) NOT NULL default '0', - `_read` varchar(2) NOT NULL default '0', - `_update` varchar(2) NOT NULL default '0', - `_delete` varchar(2) NOT NULL default '0', - PRIMARY KEY (`id`), - UNIQUE KEY `ARO_ACO_KEY` (`aro_id`,`aco_id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; - --- --- Dumping data for table `aros_acos` --- - - --- -------------------------------------------------------- - --- --- Table structure for table `cake_sessions` --- - -CREATE TABLE IF NOT EXISTS `cake_sessions` ( - `id` varchar(255) NOT NULL default '', - `data` text, - `expires` int(11) default NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1; - --- --- Dumping data for table `cake_sessions` --- - -INSERT INTO `cake_sessions` (`id`, `data`, `expires`) VALUES -('lui0vjag9376t2n6932gutvhi1', 'Config|a:3:{s:9:"userAgent";s:32:"66872ae53dadaefd36bd22880f8f8e89";s:4:"time";i:1255022995;s:7:"timeout";i:10;}Message|a:0:{}Auth|a:1:{s:4:"User";a:7:{s:2:"id";s:1:"8";s:8:"username";s:4:"karl";s:10:"first_name";s:4:"Karl";s:9:"last_name";s:6:"Cordes";s:5:"email";s:27:"karl@cmctechnologies.com.au";s:9:"job_title";s:42:"Systems Administrator / Software Developer";s:8:"group_id";s:1:"6";}}', 1255022996); - --- -------------------------------------------------------- - --- --- Table structure for table `contacts` --- - -CREATE TABLE IF NOT EXISTS `contacts` ( - `customer_id` int(11) NOT NULL, - `id` int(11) NOT NULL auto_increment, - `first_name` varchar(255) NOT NULL, - `last_name` varchar(255) NOT NULL, - `email` varchar(255) NOT NULL, - `phone` varchar(255) NOT NULL, - `fax` varchar(255) NOT NULL, - `notes` text NOT NULL, - `mobile` varchar(255) NOT NULL, - `contact_category_id` int(11) NOT NULL, - `direct_phone` varchar(255) NOT NULL, - `phone_extension` varchar(30) NOT NULL, - `job_title` varchar(255) default NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=40 ; - --- --- Dumping data for table `contacts` --- - -INSERT INTO `contacts` (`customer_id`, `id`, `first_name`, `last_name`, `email`, `phone`, `fax`, `notes`, `mobile`, `contact_category_id`, `direct_phone`, `phone_extension`, `job_title`) VALUES -(1, 1, 'Joe', 'Bloggs', 'jbloggs@test.com.au', '02 49159 1 195', '02 19259 1110', 'Something!', '', 2, '', '', ''), -(2, 2, 'Joe', 'Bloggs', 'jbloggs@anothercustomer.com', '02 9419 19419', '02 94191 1491', 'Some Info about the customer', '', 4, '', '', NULL), -(1, 3, 'bob', 'jones', 'bjones@somewhere.com', '', '', '', '', 0, '', '', NULL), -(3, 4, 'TEST-DISREGARD-THIS', 'Fry', 'karl@cmctechnologies.com.au', '', '', '', '', 0, '', '', NULL), -(2, 5, 'SomeGuy', 'SomeRa', '', '', '', '', '', 0, '', '', NULL), -(2, 6, 'Karl', 'Cordes', 'karl@cmctechnologies.com.au', '', '', '', '', 0, '', '', NULL), -(4, 7, 'Guybrush', 'Threepwood', 'guybrush@threepwood.net', '02 235115', '', '', '', 0, '', '', NULL), -(6, 8, 'Lechuck', 'ThePirate', 'lechuck@fortress.evil', '02 91941 1941', '02 915915015', 'Zombie Pirate. Watch out for him!', '041 91515 1591', 0, '', '', NULL), -(8, 9, 'Sam', 'theRabbit', 'sam@isabitcrazy.com', '0125951', '1219501259', 'He''s a deranged Rabbit creature.', '12591059', 0, '', '', NULL), -(9, 10, 'Marshall', 'Ericsson', 'marshall@goliathbank.com.au', '02 498190 10410', '', '', '', 0, '', '', NULL), -(10, 11, 'Robert', 'Oppenheimer', 'become.death@destroyerofworlds.org', '02 491259150', '', 'I am become death, the destroyer of worlds.', '', 0, '', '', NULL), -(10, 12, 'Toranga', 'Leela', 'oneeye@hotmail.com', '', '', 'Heee-yeah! \r\n', '', 0, '', '', NULL), -(10, 13, 'AnotherContact', 'AnotherLastname', 'a.person@somecompany.com', '', '215195 ', 'Some', '05125 1591205', 0, '', '', NULL), -(10, 14, 'LastOne', 'LastName', 'lastone@somanycontacts.com', '156906190', '', 'Whee!', 'lastone@something.com', 0, '', '', NULL), -(11, 15, 'Barney', 'Stinson', 'barney@gnb.com', '1259210590', '12 59120', 'Legendary Guy', '150590', 0, '', '', NULL), -(11, 16, 'Ted', 'Moseby', 'ted@gnb.com', '1259150', '', 'The Architect', '25191205', 0, '', '', NULL), -(2, 33, 'Guybrush', 'Threepwood', 'karl@cmctechnologies.com.au', '02 9669 4000', '', 'wgghgwefw', '0415 397 713', 4, '', '', NULL), -(12, 31, 'GoodGuy', 'GoodCompany', 'gg@madgoodco.com.au', '12585105', '1295105', '', '1595105', 0, '', '', NULL), -(7, 32, 'SomeOtherTestUser', 'TESTMAN', 'karl@cmctechnologies.com.au', '1591509101', '1259510', '21391205', '130921350', 0, '', '', NULL), -(3, 30, 'Jim the Test Contact', 'Bob', 'karl@cmctechnologies.com.au', '', '1512951950', 'Jim Bob, Savanah Bait and Sushi', '', 0, '', '', NULL), -(3, 29, 'AnotherContact Added Directly from New Enquiry Form', 'Success', 'karl@cmctechnologies.com.au', '125910515', '190519', '1595095', '12509150', 0, '', '', NULL), -(3, 28, 'NewContact from Add Enquiry Form', 'yeah yeah', 'karl@cmctechnologies.com.au', '195105590159205', '125912059', 'This is awesome.', '125091205125', 0, '', '', NULL), -(3, 27, 'AnotherContactInOneStep', 'weqgjwig', 'karl@cmctechnologies.com.au', '250239205905', '589151295', '58159185-15', '23106960', 0, '', '', NULL), -(3, 26, 'AddAContactWithanEnquiry', 'SomeGuy', 'karl@cmctechnologies.com.au', '', '', 'Time Saving is Fun!', '', 0, '', '', NULL), -(3, 25, 'AddAContactWithanEnquiry', 'SomeGuy', 'karl@cmctechnologies.com.au', '', '', 'Time Saving is Fun!', '', 0, '', '', NULL), -(4, 34, 'Eric', 'Raymond', 'void@karlcordes.com', '', '', '', '', 0, '', '', NULL), -(15, 35, 'Eric', 'Foreman', 'void@karlcordes.com', '0245 195015', '', 'Lord of the Basement', '122059210 51', 1, '', '', NULL), -(2, 36, 'Karlos', 'Cordes', 'karl@cmctechnologies.com.au', '5915012150915', '', 'Quickly adding Contacts is FUN!', '1250915015', 1, '', '', NULL), -(16, 37, 'Test', 'Man', 'tman@testcustomer.com.au', '042491512 ', '', '', '05150150', 1, '', '', NULL), -(2, 38, 'Rah', 'Man', 'rahman@anothercust.com.au', '02 9151', '23230590', '', '231050251', 1, '', '359', NULL), -(18, 39, 'Rah', 'Man', 'raman@wgjwig.com', '23105950195', '', 'HAHA!', '101515215', 2, '', '', 'MR ACCOUNT MAN'); - --- -------------------------------------------------------- - --- --- Table structure for table `contact_categories` --- - -CREATE TABLE IF NOT EXISTS `contact_categories` ( - `id` int(11) NOT NULL auto_increment, - `name` varchar(255) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; - --- --- Dumping data for table `contact_categories` --- - -INSERT INTO `contact_categories` (`id`, `name`) VALUES -(1, 'Engineering & Maintenance'), -(2, 'Accounts'), -(3, 'Management'), -(4, 'Purchasing / Expediting'); - --- -------------------------------------------------------- - --- --- Table structure for table `costings` --- - -CREATE TABLE IF NOT EXISTS `costings` ( - `id` int(11) NOT NULL auto_increment, - `created` datetime NOT NULL, - `product_id` int(11) default NULL COMMENT 'Will only be one of quote_product, order, invoice ', - `quote_product_id` int(11) default NULL, - `order_product_id` int(11) default NULL, - `invoice_product_id` int(11) default NULL, - `currency_id` int(11) NOT NULL COMMENT 'Cost Price Currency', - `quantity` decimal(10,2) NOT NULL, - `unit_cost_price` decimal(10,2) default NULL, - `exchange_rate` decimal(10,2) default NULL, - `our_discount_percent` decimal(10,2) default NULL, - `packing` decimal(10,2) NOT NULL, - `shipping_weight` decimal(10,2) NOT NULL, - `shipping_cost` decimal(10,2) NOT NULL, - `duty_percent` decimal(10,2) NOT NULL, - `customs` decimal(10,2) NOT NULL, - `finance_percent` decimal(10,2) NOT NULL, - `misc_costs` decimal(10,2) NOT NULL, - `gross_sell_price` decimal(10,2) NOT NULL, - `sale_discount_percent` decimal(10,2) NOT NULL, - `net_sell_price` decimal(10,2) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; - --- --- Dumping data for table `costings` --- - - --- -------------------------------------------------------- - --- --- Table structure for table `countries` --- - -CREATE TABLE IF NOT EXISTS `countries` ( - `id` int(11) NOT NULL auto_increment, - `name` varchar(255) NOT NULL, - `currency_id` int(11) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ; - --- --- Dumping data for table `countries` --- - -INSERT INTO `countries` (`id`, `name`, `currency_id`) VALUES -(1, 'Australia', 2), -(2, 'United Kingdom', 4), -(3, 'Germany', 1), -(4, 'United States', 3), -(5, 'Switzerland', 1), -(6, 'Japan', 5), -(7, 'Australia', 0); - --- -------------------------------------------------------- - --- --- Table structure for table `currencies` --- - -CREATE TABLE IF NOT EXISTS `currencies` ( - `id` int(11) NOT NULL auto_increment, - `name` varchar(255) NOT NULL, - `symbol` char(5) NOT NULL COMMENT 'Currency Symbol ($, Euro etc)', - `iso4217` varchar(3) NOT NULL COMMENT 'AUD, USD, etc', - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; - --- --- Dumping data for table `currencies` --- - -INSERT INTO `currencies` (`id`, `name`, `symbol`, `iso4217`) VALUES -(1, 'Euro', '&euro', 'EUR'), -(2, 'Australian Dollar', '$', 'AUD'), -(3, 'US Dollar', '$', 'USD'), -(4, 'Pound Sterling', '£', 'GBP'), -(5, 'Japanese Yen', '¥', 'JPY'); - --- -------------------------------------------------------- - --- --- Table structure for table `customers` --- - -CREATE TABLE IF NOT EXISTS `customers` ( - `id` int(11) NOT NULL auto_increment, - `name` varchar(255) NOT NULL COMMENT 'Company Name', - `abn` varchar(20) default NULL, - `created` datetime NOT NULL, - `notes` text NOT NULL, - `url` varchar(300) default NULL, - `payment_terms` varchar(255) NOT NULL, - `discount_pricing_policies` text NOT NULL, - `customer_category_id` int(11) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=25 ; - --- --- Dumping data for table `customers` --- - -INSERT INTO `customers` (`id`, `name`, `abn`, `created`, `notes`, `url`, `payment_terms`, `discount_pricing_policies`, `customer_category_id`) VALUES -(1, 'TestCompany', '0', '2009-01-17 15:52:52', '', NULL, '100% Payment with Order', '', 1), -(2, 'AnotherCustomer', '2147483647', '2009-01-17 17:04:27', '', NULL, 'Net 7 Days for Approved Accounts', '', 2), -(3, 'BorgCorporation', '0', '2009-01-20 15:21:11', '', NULL, 'Net 30 Days for Approved Accounts', '', 1), -(4, 'I want to be a Pirate Corp', '0', '2009-02-03 16:47:19', '', NULL, 'Net 30 Days for Approved Accounts', '', 2), -(5, 'SomePlainOldCompany', '2147483647', '2009-02-03 17:01:36', '', NULL, '', '', 0), -(6, 'SuperEfficientCompanyAdding', '0', '2009-02-03 17:03:00', '', NULL, '', '', 0), -(7, 'BoringCustomer', '0', '2009-02-03 17:04:41', '', NULL, '100% Payment with Order', '', 0), -(8, 'ExcitingCustomer', '0', '2009-02-03 17:07:09', '', NULL, '', '', 0), -(9, 'YACustomerWOBlankContact', '0', '2009-02-03 17:15:31', '', NULL, '100% Payment with Order', '', 3), -(10, 'SuperBigCompany', '0', '2009-02-04 08:45:49', '', NULL, '100% Payment with Order', '', 3), -(11, 'GoliathNationalBank', '0', '2009-02-04 10:19:16', '', NULL, '', '', 0), -(12, 'Mad Good Company', '2147483647', '2009-02-04 15:20:33', 'Pretty Good Guys', NULL, '100% Payment with Order', '10% off Mid-West DP Gauges', 3), -(13, 'SuperEfficientCompanyAdding55', '0', '2009-02-04 15:36:05', '', NULL, '100% Payment with Order', '', 1), -(14, 'Suspect', '0', '2009-02-12 14:01:42', '191591512', NULL, '100% Payment with Order', '', 2), -(15, 'That 70''s Company', '56629529592', '2009-02-24 15:53:01', '', '', '100% Payment with Order', '', 2), -(16, 'TestCustomer', '2147483647', '2009-04-14 09:42:30', '', NULL, '100% Payment with Order', '', 1), -(17, 'WHOA. ABN VALIDATION ROCKS', '12345678', '2009-07-13 12:56:55', '', NULL, '100% Payment with Order', '', 1), -(18, 'ABN VAL 2', '56572484518', '2009-07-13 13:02:30', '', '', '100% Payment with Order', '', 1), -(19, 'ABN VAL 3', '55666444556', '2009-07-13 13:15:33', '', '', '100% Payment with Order', '', 1), -(20, 'ABN VALTEST 5', '10555343255', '2009-07-13 14:21:15', '', NULL, '100% Payment with Order', '', 1), -(21, 'ABN VALTEST 6', '45556621505', '2009-07-13 14:21:51', '', NULL, '100% Payment with Order', '', 1), -(22, 'Some Customer NewVal', '12555515205', '2009-07-13 14:42:32', '', 'http://www.google.com', '100% Payment with Order', '', 1), -(23, 'Rah', '34133380177', '2009-07-13 14:48:13', '', 'http://www.google.com', '100% Payment with Order', '', 1), -(24, 'SUP G!!!', '50550550555', '2009-07-17 14:57:01', '', '', 'Net 7 Days for Approved Accounts', 'RAAHA', 1); - --- -------------------------------------------------------- - --- --- Table structure for table `customer_categories` --- - -CREATE TABLE IF NOT EXISTS `customer_categories` ( - `id` int(11) NOT NULL auto_increment, - `name` varchar(255) NOT NULL COMMENT 'Name of the Category', - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; - --- --- Dumping data for table `customer_categories` --- - -INSERT INTO `customer_categories` (`id`, `name`) VALUES -(1, 'Suspect'), -(2, 'Prospect'), -(3, 'Customer - Creditor'); - --- -------------------------------------------------------- - --- --- Table structure for table `emails` --- - -CREATE TABLE IF NOT EXISTS `emails` ( - `id` int(11) NOT NULL auto_increment, - `to` varchar(500) NOT NULL, - `cc` varchar(500) NOT NULL, - `from` varchar(500) NOT NULL, - `body` text NOT NULL, - `plainbody` text NOT NULL, - `date` varchar(255) NOT NULL, - `created` datetime NOT NULL, - `enquiry_id` int(11) NOT NULL, - `subject` varchar(500) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=42 ; - --- --- Dumping data for table `emails` --- - -INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES -(1, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '\r\n\r\n\r\n\r\n\r\nBODY OF AN HTML EMAIL
\r\n
\r\n
\r\nFORMAT ME PROPERLY!
\r\n
\r\n\r\n\r\n\r\n', '', 'Thu, 12 Feb 2009 09:51:46 +1100', '2009-02-12 11:00:09', 56, 'CMC7938NE372087-246 TEST AGAIN'), -(2, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '\r\n\r\n\r\n\r\n\r\nBODY OF AN HTML EMAIL
\r\n
\r\n
\r\nFORMAT ME PROPERLY!
\r\n
\r\n\r\n\r\n\r\n', '', 'Thu, 12 Feb 2009 09:51:46 +1100', '2009-02-12 11:01:58', 56, 'CMC7938NE372087-246 TEST AGAIN'), -(3, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: CMC7950VE252082-606 - FEB09VJ5470/CMCPO1673 M25 OA
Date: Thu, 12 Feb 2009 08:34:04 +1100
From: Sales - CMC Technologies <sales@cmctechnologies.com.au>
To: Vault <vault@cmctechnologies.com.au>
\r\n
\r\n
\r\n\r\n\r\n\r\n
----- Original Message -----
\r\n\r\nFrom:\r\nWilliams, Wendy \r\n
To: sales@cmctechnologies.com.au\r\n
\r\n
Sent: Wednesday, February 11, 2009 9:24 PM
\r\n\r\n

\r\n
\r\n
\r\n

Morning

\r\n

 

\r\n

Copies of\r\norder acknowledgements attached.

\r\n

 

\r\n

 

\r\n

 

\r\n

Regards

\r\n

 

\r\n

 

\r\n

Wendy

\r\n
\r\n
\r\n
\r\nThis e-mail contains\r\nprivileged and confidential information intended for the use of the\r\naddressees named above. If you are not the intended recipient of this\r\ne-mail, you are hereby notified that you must not disseminate, copy or\r\ntake any action in respect of any information contained in it. If you\r\nhave received this e-mail in error, please notify the sender\r\nimmediately by e-mail and immediately destroy this e-mail and its\r\nattachments.
\r\n

\r\n
\r\nSafety Systems UK Ltd
\r\nRegistered in England and Wales
\r\nRegistered address: Victoria Road, Leeds, LS11 5UG
\r\nRegistered number 30037
\r\n

\r\n\r\n\r\n\r\n', '', 'Thu, 12 Feb 2009 11:01:30 +1100', '2009-02-12 11:01:58', 56, '[Fwd: CMC7938NE372087-246 - FEB09VJ5470/CMCPO1673 M25 OA]'), -(4, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '\r\n\r\n\r\n\r\n\r\nBODY OF AN HTML EMAIL
\r\n
\r\n
\r\nFORMAT ME PROPERLY!
\r\n
\r\n\r\n\r\n\r\n', '', 'Thu, 12 Feb 2009 09:51:46 +1100', '2009-02-12 11:18:58', 56, 'CMC7938NE372087-246 TEST AGAIN'), -(5, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: CMC7950VE252082-606 - FEB09VJ5470/CMCPO1673 M25 OA
Date: Thu, 12 Feb 2009 08:34:04 +1100
From: Sales - CMC Technologies <sales@cmctechnologies.com.au>
To: Vault <vault@cmctechnologies.com.au>
\r\n
\r\n
\r\n\r\n\r\n\r\n
----- Original Message -----
\r\n\r\nFrom:\r\nWilliams, Wendy \r\n\r\n
Sent: Wednesday, February 11, 2009 9:24 PM
\r\n\r\n

\r\n
\r\n
\r\n

Morning

\r\n

 

\r\n

Copies of\r\norder acknowledgements attached.

\r\n

 

\r\n

 

\r\n

 

\r\n

Regards

\r\n

 

\r\n

 

\r\n

Wendy

\r\n
\r\n
\r\n
\r\nThis e-mail contains\r\nprivileged and confidential information intended for the use of the\r\naddressees named above. If you are not the intended recipient of this\r\ne-mail, you are hereby notified that you must not disseminate, copy or\r\ntake any action in respect of any information contained in it. If you\r\nhave received this e-mail in error, please notify the sender\r\nimmediately by e-mail and immediately destroy this e-mail and its\r\nattachments.
\r\n

\r\n
\r\nSafety Systems UK Ltd
\r\nRegistered in England and Wales
\r\nRegistered address: Victoria Road, Leeds, LS11 5UG
\r\nRegistered number 30037
\r\n

\r\n\r\n\r\n\r\n', '', 'Thu, 12 Feb 2009 11:01:30 +1100', '2009-02-12 11:18:59', 56, '[Fwd: CMC7938NE372087-246 - FEB09VJ5470/CMCPO1673 M25 OA]'), -(6, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '\r\n\r\n\r\n\r\n\r\nBODY OF AN HTML EMAIL
\r\n
\r\n
\r\nFORMAT ME PROPERLY!
\r\n
\r\n\r\n\r\n\r\n', '', 'Thu, 12 Feb 2009 09:51:46 +1100', '2009-02-12 11:33:21', 56, 'CMC7938NE372087-246 TEST AGAIN'), -(7, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: CMC7950VE252082-606 - FEB09VJ5470/CMCPO1673 M25 OA
Date: Thu, 12 Feb 2009 08:34:04 +1100
From: Sales - CMC Technologies <sales@cmctechnologies.com.au>
To: Vault <vault@cmctechnologies.com.au>
\r\n
\r\n
\r\n\r\n\r\n\r\n
----- Original Message -----
\r\n\r\nFrom:\r\nWilliams, Wendy \r\n\r\n
Sent: Wednesday, February 11, 2009 9:24 PM
\r\n\r\n

\r\n
\r\n
\r\n

Morning

\r\n

 

\r\n

Copies of\r\norder acknowledgements attached.

\r\n

 

\r\n

 

\r\n

 

\r\n

Regards

\r\n

 

\r\n

 

\r\n

Wendy

\r\n
\r\n
\r\n
\r\nThis e-mail contains\r\nprivileged and confidential information intended for the use of the\r\naddressees named above. If you are not the intended recipient of this\r\ne-mail, you are hereby notified that you must not disseminate, copy or\r\ntake any action in respect of any information contained in it. If you\r\nhave received this e-mail in error, please notify the sender\r\nimmediately by e-mail and immediately destroy this e-mail and its\r\nattachments.
\r\n

\r\n
\r\nSafety Systems UK Ltd
\r\nRegistered in England and Wales
\r\nRegistered address: Victoria Road, Leeds, LS11 5UG
\r\nRegistered number 30037
\r\n

\r\n\r\n\r\n\r\n', '', 'Thu, 12 Feb 2009 11:01:30 +1100', '2009-02-12 11:33:21', 56, '[Fwd: CMC7938NE372087-246 - FEB09VJ5470/CMCPO1673 M25 OA]'), -(8, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '\r\n\r\n\r\n\r\n\r\nBODY OF AN HTML EMAIL
\r\n
\r\n
\r\nFORMAT ME PROPERLY!
\r\n
\r\n\r\n\r\n\r\n', '', 'Thu, 12 Feb 2009 09:51:46 +1100', '2009-02-12 11:34:48', 56, 'CMC7938NE372087-246 TEST AGAIN'), -(9, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: CMC7950VE252082-606 - FEB09VJ5470/CMCPO1673 M25 OA
Date: Thu, 12 Feb 2009 08:34:04 +1100
From: Sales - CMC Technologies <sales@cmctechnologies.com.au>
To: Vault <vault@cmctechnologies.com.au>
\r\n
\r\n
\r\n\r\n\r\n\r\n
----- Original Message -----
\r\n\r\nFrom:\r\nWilliams, Wendy \r\n\r\n
Sent: Wednesday, February 11, 2009 9:24 PM
\r\n\r\n

\r\n
\r\n
\r\n

Morning

\r\n

 

\r\n

Copies of\r\norder acknowledgements attached.

\r\n

 

\r\n

 

\r\n

 

\r\n

Regards

\r\n

 

\r\n

 

\r\n

Wendy

\r\n
\r\n
\r\n
\r\nThis e-mail contains\r\nprivileged and confidential information intended for the use of the\r\naddressees named above. If you are not the intended recipient of this\r\ne-mail, you are hereby notified that you must not disseminate, copy or\r\ntake any action in respect of any information contained in it. If you\r\nhave received this e-mail in error, please notify the sender\r\nimmediately by e-mail and immediately destroy this e-mail and its\r\nattachments.
\r\n

\r\n
\r\nSafety Systems UK Ltd
\r\nRegistered in England and Wales
\r\nRegistered address: Victoria Road, Leeds, LS11 5UG
\r\nRegistered number 30037
\r\n

\r\n\r\n\r\n\r\n', '', 'Thu, 12 Feb 2009 11:01:30 +1100', '2009-02-12 11:34:48', 56, '[Fwd: CMC7938NE372087-246 - FEB09VJ5470/CMCPO1673 M25 OA]'), -(10, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '\r\n\r\n\r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: CMC7953VE652225-543 - Order Confirmation from FHP
Date: Wed, 11 Feb 2009 16:53:34 +1100
From: Doreena - CMC Technologies\r\n<doreena@cmctechnologies.com.au>
To: Vault <vault@cmctechnologies.com.au>
\r\n
\r\n
\r\n
----- Original Message ----- \r\nFrom: "Jaroslav Tselikmann" <sts@papenmeier.de>\r\nTo: "Con Carpis" <carpis@cmctechnologies.com.au>\r\nCc: "Doreena Kourtesis" <doreena@cmctechnologies.com.au>\r\nSent: Wednesday, February 11, 2009 2:02 AM\r\nSubject: Order Confirmation Lumiglas\r\n\r\n\r\n>\r\n> -- \r\n> Mit freundlichen Grüßen / Best Regards\r\n>\r\n> Jaroslav Tselikmann\r\n> Lumiglas Vertrieb / sales\r\n>\r\n> F.H. Papenmeier GmbH & Co. KG\r\n> Talweg 2                  -  58239 Schwerte\r\n> Tel:   (+49)-2304-205-171 -  Email: sts@papenmeier.de\r\n> Fax:   (+49)-2304-205-206 -  Web:   http://www.lumiglas.de\r\n>\r\n> Kommanditgesellschaft: Sitz Schwerte, Amtsgericht - Hagen, HR A 3874\r\n> Persönlich haftender Gesellschafter: F.H. Papenmeier Verwaltungs-GmbH, \r\n> Sitz Schwerte, Amtsgericht - Hagen, HR B 4491 / F.Horst Papenmeier\r\n> Geschäftsführer: Günther Papenmeier, Armin Papenmeier\r\n>\r\n> \r\n\r\n
\r\n\r\n\r\n\r\n', '\r\n>\r\n> -- \r\n> Mit freundlichen Grüßen / Best Regards\r\n>\r\n> Jaroslav Tselikmann\r\n> Lumiglas Vertrieb / sales\r\n>\r\n> F.H. Papenmeier GmbH & Co. KG\r\n> Talweg 2 - 58239 Schwerte\r\n> Tel: (+49)-2304-205-171 - Email: sts@papenmeier.de\r\n> Fax: (+49)-2304-205-206 - Web: http://www.lumiglas.de\r\n>\r\n> Kommanditgesellschaft: Sitz Schwerte, Amtsgericht - Hagen, HR A 3874\r\n> Persönlich haftender Gesellschafter: F.H. Papenmeier Verwaltungs-GmbH, \r\n> Sitz Schwerte, Amtsgericht - Hagen, HR B 4491 / F.Horst Papenmeier\r\n> Geschäftsführer: Günther Papenmeier, Armin Papenmeier\r\n>\r\n> \r\n\r\n\r\n\r\n\r\n\r\n', 'Thu, 12 Feb 2009 11:34:15 +1100', '2009-02-12 11:34:49', 56, '[Fwd: CMC7938NE372087-246 - Order Confirmation from FHP]'), -(11, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '\r\n\r\n\r\n\r\n\r\nBODY OF AN HTML EMAIL
\r\n
\r\n
\r\nFORMAT ME PROPERLY!
\r\n
\r\n\r\n\r\n\r\n', '', 'Thu, 12 Feb 2009 09:51:46 +1100', '2009-02-12 11:40:53', 56, 'CMC7938NE372087-246 TEST AGAIN'), -(12, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: CMC7950VE252082-606 - FEB09VJ5470/CMCPO1673 M25 OA
Date: Thu, 12 Feb 2009 08:34:04 +1100
From: Sales - CMC Technologies <sales@cmctechnologies.com.au>
To: Vault <vault@cmctechnologies.com.au>
\r\n
\r\n
\r\n\r\n\r\n\r\n
----- Original Message -----
\r\n\r\nFrom:\r\nWilliams, Wendy \r\n\r\n
Sent: Wednesday, February 11, 2009 9:24 PM
\r\n\r\n

\r\n
\r\n
\r\n

Morning

\r\n

 

\r\n

Copies of\r\norder acknowledgements attached.

\r\n

 

\r\n

 

\r\n

 

\r\n

Regards

\r\n

 

\r\n

 

\r\n

Wendy

\r\n
\r\n
\r\n
\r\nThis e-mail contains\r\nprivileged and confidential information intended for the use of the\r\naddressees named above. If you are not the intended recipient of this\r\ne-mail, you are hereby notified that you must not disseminate, copy or\r\ntake any action in respect of any information contained in it. If you\r\nhave received this e-mail in error, please notify the sender\r\nimmediately by e-mail and immediately destroy this e-mail and its\r\nattachments.
\r\n

\r\n
\r\nSafety Systems UK Ltd
\r\nRegistered in England and Wales
\r\nRegistered address: Victoria Road, Leeds, LS11 5UG
\r\nRegistered number 30037
\r\n

\r\n\r\n\r\n\r\n', '', 'Thu, 12 Feb 2009 11:01:30 +1100', '2009-02-12 11:40:54', 56, '[Fwd: CMC7938NE372087-246 - FEB09VJ5470/CMCPO1673 M25 OA]'), -(13, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '\r\n\r\n\r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: CMC7953VE652225-543 - Order Confirmation from FHP
Date: Wed, 11 Feb 2009 16:53:34 +1100
From: Doreena - CMC Technologies\r\n<doreena@cmctechnologies.com.au>
To: Vault <vault@cmctechnologies.com.au>
\r\n
\r\n
\r\n
----- Original Message ----- \r\nFrom: "Jaroslav Tselikmann" <sts@papenmeier.de>\r\nTo: "Con Carpis" <carpis@cmctechnologies.com.au>\r\nCc: "Doreena Kourtesis" <doreena@cmctechnologies.com.au>\r\nSent: Wednesday, February 11, 2009 2:02 AM\r\nSubject: Order Confirmation Lumiglas\r\n\r\n\r\n>\r\n> -- \r\n> Mit freundlichen Grüßen / Best Regards\r\n>\r\n> Jaroslav Tselikmann\r\n> Lumiglas Vertrieb / sales\r\n>\r\n> F.H. Papenmeier GmbH & Co. KG\r\n> Talweg 2                  -  58239 Schwerte\r\n> Tel:   (+49)-2304-205-171 -  Email: sts@papenmeier.de\r\n> Fax:   (+49)-2304-205-206 -  Web:   http://www.lumiglas.de\r\n>\r\n> Kommanditgesellschaft: Sitz Schwerte, Amtsgericht - Hagen, HR A 3874\r\n> Persönlich haftender Gesellschafter: F.H. Papenmeier Verwaltungs-GmbH, \r\n> Sitz Schwerte, Amtsgericht - Hagen, HR B 4491 / F.Horst Papenmeier\r\n> Geschäftsführer: Günther Papenmeier, Armin Papenmeier\r\n>\r\n> \r\n\r\n
\r\n\r\n\r\n\r\n', '\r\n>\r\n> -- \r\n> Mit freundlichen Grüßen / Best Regards\r\n>\r\n> Jaroslav Tselikmann\r\n> Lumiglas Vertrieb / sales\r\n>\r\n> F.H. Papenmeier GmbH & Co. KG\r\n> Talweg 2 - 58239 Schwerte\r\n> Tel: (+49)-2304-205-171 - Email: sts@papenmeier.de\r\n> Fax: (+49)-2304-205-206 - Web: http://www.lumiglas.de\r\n>\r\n> Kommanditgesellschaft: Sitz Schwerte, Amtsgericht - Hagen, HR A 3874\r\n> Persönlich haftender Gesellschafter: F.H. Papenmeier Verwaltungs-GmbH, \r\n> Sitz Schwerte, Amtsgericht - Hagen, HR B 4491 / F.Horst Papenmeier\r\n> Geschäftsführer: Günther Papenmeier, Armin Papenmeier\r\n>\r\n> \r\n\r\n\r\n\r\n\r\n\r\n', 'Thu, 12 Feb 2009 11:34:15 +1100', '2009-02-12 11:40:54', 56, '[Fwd: CMC7938NE372087-246 - Order Confirmation from FHP]'), -(14, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '\r\n\r\n\r\n\r\n\r\nBODY OF AN HTML EMAIL
\r\n
\r\n
\r\nFORMAT ME PROPERLY!
\r\n
\r\n\r\n\r\n\r\n', '', 'Thu, 12 Feb 2009 09:51:46 +1100', '2009-02-12 11:41:32', 56, 'CMC7938NE372087-246 TEST AGAIN'), -(15, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: CMC7950VE252082-606 - FEB09VJ5470/CMCPO1673 M25 OA
Date: Thu, 12 Feb 2009 08:34:04 +1100
From: Sales - CMC Technologies <sales@cmctechnologies.com.au>
To: Vault <vault@cmctechnologies.com.au>
\r\n
\r\n
\r\n\r\n\r\n\r\n
----- Original Message -----
\r\n\r\nFrom:\r\nWilliams, Wendy \r\n\r\n
Sent: Wednesday, February 11, 2009 9:24 PM
\r\n\r\n

\r\n
\r\n
\r\n

Morning

\r\n

 

\r\n

Copies of\r\norder acknowledgements attached.

\r\n

 

\r\n

 

\r\n

 

\r\n

Regards

\r\n

 

\r\n

 

\r\n

Wendy

\r\n
\r\n
\r\n
\r\nThis e-mail contains\r\nprivileged and confidential information intended for the use of the\r\naddressees named above. If you are not the intended recipient of this\r\ne-mail, you are hereby notified that you must not disseminate, copy or\r\ntake any action in respect of any information contained in it. If you\r\nhave received this e-mail in error, please notify the sender\r\nimmediately by e-mail and immediately destroy this e-mail and its\r\nattachments.
\r\n

\r\n
\r\nSafety Systems UK Ltd
\r\nRegistered in England and Wales
\r\nRegistered address: Victoria Road, Leeds, LS11 5UG
\r\nRegistered number 30037
\r\n

\r\n\r\n\r\n\r\n', '', 'Thu, 12 Feb 2009 11:01:30 +1100', '2009-02-12 11:41:32', 56, '[Fwd: CMC7938NE372087-246 - FEB09VJ5470/CMCPO1673 M25 OA]'); -INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES -(16, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '\r\n\r\n\r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: CMC7953VE652225-543 - Order Confirmation from FHP
Date: Wed, 11 Feb 2009 16:53:34 +1100
From: Doreena - CMC Technologies\r\n<doreena@cmctechnologies.com.au>
To: Vault <vault@cmctechnologies.com.au>
\r\n
\r\n
\r\n
----- Original Message ----- \r\nFrom: "Jaroslav Tselikmann" <sts@papenmeier.de>\r\nTo: "Con Carpis" <carpis@cmctechnologies.com.au>\r\nCc: "Doreena Kourtesis" <doreena@cmctechnologies.com.au>\r\nSent: Wednesday, February 11, 2009 2:02 AM\r\nSubject: Order Confirmation Lumiglas\r\n\r\n\r\n>\r\n> -- \r\n> Mit freundlichen Grüßen / Best Regards\r\n>\r\n> Jaroslav Tselikmann\r\n> Lumiglas Vertrieb / sales\r\n>\r\n> F.H. Papenmeier GmbH & Co. KG\r\n> Talweg 2                  -  58239 Schwerte\r\n> Tel:   (+49)-2304-205-171 -  Email: sts@papenmeier.de\r\n> Fax:   (+49)-2304-205-206 -  Web:   http://www.lumiglas.de\r\n>\r\n> Kommanditgesellschaft: Sitz Schwerte, Amtsgericht - Hagen, HR A 3874\r\n> Persönlich haftender Gesellschafter: F.H. Papenmeier Verwaltungs-GmbH, \r\n> Sitz Schwerte, Amtsgericht - Hagen, HR B 4491 / F.Horst Papenmeier\r\n> Geschäftsführer: Günther Papenmeier, Armin Papenmeier\r\n>\r\n> \r\n\r\n
\r\n\r\n\r\n\r\n', '\r\n>\r\n> -- \r\n> Mit freundlichen Grüßen / Best Regards\r\n>\r\n> Jaroslav Tselikmann\r\n> Lumiglas Vertrieb / sales\r\n>\r\n> F.H. Papenmeier GmbH & Co. KG\r\n> Talweg 2 - 58239 Schwerte\r\n> Tel: (+49)-2304-205-171 - Email: sts@papenmeier.de\r\n> Fax: (+49)-2304-205-206 - Web: http://www.lumiglas.de\r\n>\r\n> Kommanditgesellschaft: Sitz Schwerte, Amtsgericht - Hagen, HR A 3874\r\n> Persönlich haftender Gesellschafter: F.H. Papenmeier Verwaltungs-GmbH, \r\n> Sitz Schwerte, Amtsgericht - Hagen, HR B 4491 / F.Horst Papenmeier\r\n> Geschäftsführer: Günther Papenmeier, Armin Papenmeier\r\n>\r\n> \r\n\r\n\r\n\r\n\r\n\r\n', 'Thu, 12 Feb 2009 11:34:15 +1100', '2009-02-12 11:41:33', 56, '[Fwd: CMC7938NE372087-246 - Order Confirmation from FHP]'), -(17, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '\r\n\r\n\r\n\r\n\r\nBODY OF AN HTML EMAIL
\r\n
\r\n
\r\nFORMAT ME PROPERLY!
\r\n
\r\n\r\n\r\n\r\n', '', 'Thu, 12 Feb 2009 09:51:46 +1100', '2009-02-12 11:45:53', 56, 'CMC7938NE372087-246 TEST AGAIN'), -(18, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '\r\n\r\n\r\n \r\n \r\n \r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: CMC7950VE252082-606 - FEB09VJ5470/CMCPO1673 M25 OA
Date: Thu, 12 Feb 2009 08:34:04 +1100
From: Sales - CMC Technologies <sales@cmctechnologies.com.au>
To: Vault <vault@cmctechnologies.com.au>
\r\n
\r\n
\r\n\r\n\r\n\r\n
----- Original Message -----
\r\n\r\nFrom:\r\nWilliams, Wendy \r\n\r\n
Sent: Wednesday, February 11, 2009 9:24 PM
\r\n\r\n

\r\n
\r\n
\r\n

Morning

\r\n

 

\r\n

Copies of\r\norder acknowledgements attached.

\r\n

 

\r\n

 

\r\n

 

\r\n

Regards

\r\n

 

\r\n

 

\r\n

Wendy

\r\n
\r\n
\r\n
\r\nThis e-mail contains\r\nprivileged and confidential information intended for the use of the\r\naddressees named above. If you are not the intended recipient of this\r\ne-mail, you are hereby notified that you must not disseminate, copy or\r\ntake any action in respect of any information contained in it. If you\r\nhave received this e-mail in error, please notify the sender\r\nimmediately by e-mail and immediately destroy this e-mail and its\r\nattachments.
\r\n

\r\n
\r\nSafety Systems UK Ltd
\r\nRegistered in England and Wales
\r\nRegistered address: Victoria Road, Leeds, LS11 5UG
\r\nRegistered number 30037
\r\n

\r\n\r\n\r\n\r\n', '', 'Thu, 12 Feb 2009 11:01:30 +1100', '2009-02-12 11:45:54', 56, '[Fwd: CMC7938NE372087-246 - FEB09VJ5470/CMCPO1673 M25 OA]'), -(19, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '\r\n\r\n\r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: CMC7953VE652225-543 - Order Confirmation from FHP
Date: Wed, 11 Feb 2009 16:53:34 +1100
From: Doreena - CMC Technologies\r\n<doreena@cmctechnologies.com.au>
To: Vault <vault@cmctechnologies.com.au>
\r\n
\r\n
\r\n
----- Original Message ----- \r\nFrom: "Jaroslav Tselikmann" <sts@papenmeier.de>\r\nTo: "Con Carpis" <carpis@cmctechnologies.com.au>\r\nCc: "Doreena Kourtesis" <doreena@cmctechnologies.com.au>\r\nSent: Wednesday, February 11, 2009 2:02 AM\r\nSubject: Order Confirmation Lumiglas\r\n\r\n\r\n>\r\n> -- \r\n> Mit freundlichen Grüßen / Best Regards\r\n>\r\n> Jaroslav Tselikmann\r\n> Lumiglas Vertrieb / sales\r\n>\r\n> F.H. Papenmeier GmbH & Co. KG\r\n> Talweg 2                  -  58239 Schwerte\r\n> Tel:   (+49)-2304-205-171 -  Email: sts@papenmeier.de\r\n> Fax:   (+49)-2304-205-206 -  Web:   http://www.lumiglas.de\r\n>\r\n> Kommanditgesellschaft: Sitz Schwerte, Amtsgericht - Hagen, HR A 3874\r\n> Persönlich haftender Gesellschafter: F.H. Papenmeier Verwaltungs-GmbH, \r\n> Sitz Schwerte, Amtsgericht - Hagen, HR B 4491 / F.Horst Papenmeier\r\n> Geschäftsführer: Günther Papenmeier, Armin Papenmeier\r\n>\r\n> \r\n\r\n
\r\n\r\n\r\n\r\n', '\r\n>\r\n> -- \r\n> Mit freundlichen Grüßen / Best Regards\r\n>\r\n> Jaroslav Tselikmann\r\n> Lumiglas Vertrieb / sales\r\n>\r\n> F.H. Papenmeier GmbH & Co. KG\r\n> Talweg 2 - 58239 Schwerte\r\n> Tel: (+49)-2304-205-171 - Email: sts@papenmeier.de\r\n> Fax: (+49)-2304-205-206 - Web: http://www.lumiglas.de\r\n>\r\n> Kommanditgesellschaft: Sitz Schwerte, Amtsgericht - Hagen, HR A 3874\r\n> Persönlich haftender Gesellschafter: F.H. Papenmeier Verwaltungs-GmbH, \r\n> Sitz Schwerte, Amtsgericht - Hagen, HR B 4491 / F.Horst Papenmeier\r\n> Geschäftsführer: Günther Papenmeier, Armin Papenmeier\r\n>\r\n> \r\n\r\n\r\n\r\n\r\n\r\n', 'Thu, 12 Feb 2009 11:34:15 +1100', '2009-02-12 11:45:54', 56, '[Fwd: CMC7938NE372087-246 - Order Confirmation from FHP]'), -(20, 'vault@cmctechnologies.com.au ', '', 'vault@cmctechnologies.com.au', '\r\n\r\n\r\n \r\n \r\n\r\n \r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: CMC8007QE15213-32 RFQ
Date: Wed, 11 Feb 2009 17:53:01 +1100
From: Kenan Fernandes <kenan@cmctechnologies.com.au>
To: ''Dawn Lim'' <dlim@safetysystems.com.sg>
\r\n
\r\n
\r\n\r\n\r\n\r\n\r\n
\r\n

Dear Dawn,

\r\n

 

\r\n

We have received a new enquiry for an end of line\r\nflame\r\narrestor. Can you please quote as per following

\r\n

 

\r\n

3” End of line Flame arrestor – ANSI 150#\r\nflanges

\r\n

Body: Carbon Steel

\r\n

Element: Stainless Steel

\r\n

Gas – Methane

\r\n

 

\r\n

Looking forward to your reply.

\r\n

 

\r\n

Kind Regards,

\r\n

KFernandes

\r\n

Kenan Fernandes

\r\n

Sales Engineer

\r\n
\r\n
\r\n
\r\n
\r\n

CMC\r\nTechnologies Pty Limited\r\n- ACN: 085 991 224 , ABN: 47 085 991 224
\r\nEngineering & Industrial\r\nInstrumentation
\r\n
\r\n

\r\n

Unit 19, 77 Bourke Road                                Phone:\r\n+61 2 9669 4000
\r\n
Alexandria, NSW, 2015\r\n                                 Fax:\r\n+61 2 9669 4111
\r\n
AUSTRALIA                                                        \r\nWeb:\r\nhttp://www.cmctechnologies.com.au

\r\n

 

\r\n

Specialising in Fire and\r\nExplosion Prevention or Protection, Overpressure Protection, Vision in the Process, Flow\r\nMeasurement,\r\nPressure - Differential Pressure, and Temperature - Humidity\r\nMeasurement/logging, On-Line\r\nAnalysers

\r\n
\r\n
\r\n
\r\n
\r\n

The\r\ninformation in this message is confidential and may be priveleged. If\r\nyou are\r\nnot the intended recipient then access, disclosure, copying or other\r\ndissemination of the contents of this message is unauthorised and may\r\nbe\r\npriveledged. Please inform the sender immediately if you are not the\r\nintended\r\naddressee.All correspondence is subject to CMC Technologies'' Terms and\r\nConditions of Sale - July 1, 2006

\r\n
\r\n
\r\n
\r\n
\r\n

 

\r\n
\r\n\r\n\r\n\r\n', '\r\n\r\n-------- Original Message --------\r\nSubject: CMC8007QE15213-32 RFQ\r\nDate: Wed, 11 Feb 2009 17:53:01 +1100\r\nFrom: Kenan Fernandes \r\nTo: ''Dawn Lim'' \r\n\r\n\r\n\r\nDear Dawn,\r\n\r\n \r\n\r\nWe have received a new enquiry for an end of line flame arrestor. Can \r\nyou please quote as per following\r\n\r\n \r\n\r\n3" End of line Flame arrestor -- ANSI 150# flanges\r\n\r\nBody: Carbon Steel\r\n\r\nElement: Stainless Steel\r\n\r\nGas -- Methane\r\n\r\n \r\n\r\nLooking forward to your reply.\r\n\r\n \r\n\r\nKind Regards,\r\n\r\n/KFernandes/\r\n\r\nKenan Fernandes\r\n\r\nSales Engineer\r\n\r\n------------------------------------------------------------------------\r\n\r\n*CMC Technologies Pty Limited* - ACN: 085 991 224 , ABN: 47 085 991 224\r\nEngineering & Industrial Instrumentation\r\n\r\nUnit 19, 77 Bourke Road *Phone:* +61 2 \r\n9669 4000\r\nAlexandria, NSW, 2015 *Fax: *+61 2 9669 \r\n4111\r\nAUSTRALIA *Web:* \r\n*http://www.cmctechnologies.com.au* \r\n\r\n \r\n\r\nSpecialising in Fire and Explosion Prevention or Protection, \r\nOverpressure Protection, Vision in the Process, Flow Measurement, \r\nPressure - Differential Pressure, and Temperature - Humidity \r\nMeasurement/logging, On-Line Analysers\r\n\r\n------------------------------------------------------------------------\r\n\r\nThe information in this message is confidential and may be priveleged. \r\nIf you are not the intended recipient then access, disclosure, copying \r\nor other dissemination of the contents of this message is unauthorised \r\nand may be priveledged. Please inform the sender immediately if you are \r\nnot the intended addressee.All correspondence is subject to CMC \r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006\r\n\r\n------------------------------------------------------------------------\r\n\r\n \r\n\r\n\r\n\r\n\r\nDear Dawn,\r\n\r\n \r\n\r\nWe have received a new enquiry for an end of line flame arrestor. Can \r\nyou please quote as per following\r\n\r\n \r\n\r\n3" End of line Flame arrestor -- ANSI 150# flanges\r\n\r\nBody: Carbon Steel\r\n\r\nElement: Stainless Steel\r\n\r\nGas -- Methane\r\n\r\n \r\n\r\nLooking forward to your reply.\r\n\r\n \r\n\r\nKind Regards,\r\n\r\n/KFernandes/\r\n\r\nKenan Fernandes\r\n\r\nSales Engineer\r\n\r\n------------------------------------------------------------------------\r\n\r\n*CMC Technologies Pty Limited* - ACN: 085 991 224 , ABN: 47 085 991 224\r\nEngineering & Industrial Instrumentation\r\n\r\nUnit 19, 77 Bourke Road *Phone:* +61 2 \r\n9669 4000\r\nAlexandria, NSW, 2015 *Fax: *+61 2 9669 \r\n4111\r\nAUSTRALIA *Web:* \r\n*http://www.cmctechnologies.com.au* \r\n\r\n \r\n\r\nSpecialising in Fire and Explosion Prevention or Protection, \r\nOverpressure Protection, Vision in the Process, Flow Measurement, \r\nPressure - Differential Pressure, and Temperature - Humidity \r\nMeasurement/logging, On-Line Analysers\r\n\r\n------------------------------------------------------------------------\r\n\r\nThe information in this message is confidential and may be priveleged. \r\nIf you are not the intended recipient then access, disclosure, copying \r\nor other dissemination of the contents of this message is unauthorised \r\nand may be priveledged. Please inform the sender immediately if you are \r\nnot the intended addressee.All correspondence is subject to CMC \r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006\r\n\r\n------------------------------------------------------------------------\r\n\r\n \r\n\r\n\r\n', 'Thu, 12 Feb 2009 11:45:26 +1100', '2009-02-12 11:45:55', 56, '[Fwd: CMC7938NE372087-246RFQ]'), -(21, 'vault@cmctechnologies.com.au ', '', 'karl@cmctechnologies.com.au', '\r\n\r\n\r\n \r\n \r\n\r\n\r\n
\r\n
\r\n\r\n******************************************************************************************************************************************
\r\n CMC Technologies Pty\r\nLimited - ACN: 085 991 224 , ABN: 47 085\r\n991 224
\r\n Engineering & Industrial Instrumentation
\r\n Unit 19, 77 Bourke Road
\r\n Alexandria, NSW, 2015
\r\n AUSTRALIA
\r\n phone: +61 2 9669 4000
\r\n fax    :  +61 2 9669 4111
\r\n web   : http://www.cmctechnologies.com.au
\r\n

Specialising in Fire and\r\nExplosion Prevention or Protection, Overpressure Protection, Vision in the Process,
\r\nFlow Measurement, Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging,\r\nOn-Line Analysers.
\r\n***************************************************************************************************
\r\nThe information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised
\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.

\r\n***********************************************************************************************

\r\n
\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: [Fwd: MC7948VE352072-852OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned]
Date: Tue, 30 Jun 2009 11:01:57 +1000
From: Karl - CMC Technologies <karl@cmctechnologies.com.au>
To: vault@cmctechnologies.com.au
\r\n
\r\n
\r\n\r\n
\r\n
\r\n\r\n******************************************************************************************************************************************
\r\n CMC Technologies Pty\r\nLimited - ACN: 085 991 224 , ABN: 47 085\r\n991 224
\r\n Engineering & Industrial Instrumentation
\r\n Unit 19, 77 Bourke Road
\r\n Alexandria, NSW, 2015
\r\n AUSTRALIA
\r\n phone: +61 2 9669 4000
\r\n fax    :  +61 2 9669 4111
\r\n web   : http://www.cmctechnologies.com.au
\r\n

Specialising in Fire and\r\nExplosion Prevention or Protection, Overpressure Protection, Vision in the Process,
\r\nFlow Measurement, Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging,\r\nOn-Line Analysers.
\r\n***************************************************************************************************
\r\nThe information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised
\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.

\r\n***********************************************************************************************

\r\n
\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: CMC7900WE252068-542OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned
Date: Tue, 30 Jun 2009 00:17:35 +1000
From: Con Carpis - CMC Technologies\r\n <carpis@cmctechnologies.com.au>
To: j.cleijne@atex100.com
CC: j.meistes@atex100.com, f.alfert@atex100.com,\r\n richard@cmctechnologies.com.au
\r\n
\r\n
\r\n\r\n Jan
\r\n
\r\nRemember we worked on this project earlier this year. The engineer in\r\nAustralia - site in Auckland NZ. The client now has the money but has\r\nchanged his process a little and I think its a little tricky- see\r\nattached and below.
\r\n
\r\nI assume we can stil do suppression /isolation for kst 250bar.m/sec.
\r\n
\r\nIt looks like we need suppression in dust collector and FBdrier and\r\nisolation between both - I will try to get more information but im\r\nconcerned about the 4m separation distance between the dust collector\r\nand the drier in the 3 x 400mm ducts . I cannot put a bottle in the\r\nmoddle and make it dual acting due to your guidelines. Im going to\r\nsuggest extension of these duct lengths but client may refuse due to\r\nconstraints - but please give me any other options we can suggest here.
\r\n
\r\nHere is my suggestion.
\r\nMaybe we have to use 2 bottles on each line for isolation. eg if\r\nexplosion in dust collector then an isolation bottle 3m from the dust\r\ncollector /approx 1m from the fb drier fires. If an explosion in the\r\nFBD then another isolation bottle 1m from the dust collector inlet\r\nfires - this solution if the client cannot increase the length of the\r\nduct work. Or if there is an explosion in dust collector then we fire\r\nall the bottles we propose in the FBdrier to act as isolation?  I need\r\nyour guidance how we direct this client.
\r\n
\r\nI will also  get the volumes  so we can work out details for\r\nsuppression on drier and dust collector and find out more to the inlet\r\nfeed and outlet of FBD
\r\n
\r\nCompetition is Fike and Kidde  - they are using Fike in New Zealand and\r\nKidde in Perth.
\r\n
\r\nLooking forward to your reply.
\r\n
\r\nRegards
\r\n
\r\nCon Carpis
\r\nBE Chem
\r\nManaging director
\r\n
\r\n*******************************************************************************************************
\r\nCMC Technologies Pty Limited
\r\nUnit 19, 77 Bourke Road
\r\nAlexandria NSW 2015
\r\nAustralia
\r\nABN 47 085 991 224
\r\n
\r\nph +61 2 9669 4000
\r\nfax =61 2 9669 4111
\r\nWeb http://www.cmctechnologies.com.au
\r\n
\r\nThe information in this email and attachments is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised and may be unlawful. Please inform the sender\r\nimmediately if you are not the intended addressee.
\r\n***********************************************************************************************************************************************************************************
\r\n\r\n
From: Richard Ralph [mailto:richard.ralph@au.nufarm.com]
\r\n To: carpis@cmctechnologies.com.au
\r\n Sent: Mon, 29 Jun 2009 19:15:14 +1000
\r\n Subject: Fw: CMC7900WE252068-542OTAHHUH : I & F\r\nGranulation - Explosion Suppression System Budget Price Plus GA drawing
\r\n
\r\n

(See attached file: 2039 Layout 1 (1).PDF)
\r\n
\r\n ----- Forwarded by Richard\r\nRalph/AU/Nufarm on 29/06/2009\r\n05:14 PM -----
\r\n
\r\n \r\n \r\n \r\n \r\n
    \r\n
      \r\n
        \r\n
          \r\n Richard Ralph/AU/Nufarm \r\n

          29/06/2009 05:13 PM

          \r\n
        \r\n
      \r\n
    \r\n
\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n

\r\n
To
\r\n

\r\n carpis@cmctechnologies.com.au

\r\n
cc
\r\n

\r\n

\r\n
Subject
\r\n

\r\n CMC7900WE252068-542OTAHHUH : I & F\r\nGranulation - Explosion Suppression System Budget Price
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n Con,
\r\n
\r\n good morning.
\r\n
\r\n My project in Auckland has had a number of design\r\nchanges since we last spoke. The Fluid bed Drier and it''s associated\r\nDust Collector are now reasonably close together and are now connected\r\nby 3 (three) off 400mm dia ducts. These ducts are L shaped and\r\napproximately 1.5m (horizontal) by 2.5m (vertical).
\r\n
\r\n Can you advise if this is going to be a problem with\r\nregards to protecting both vessels. The design Kst value is 250 Bar.s/m\r\nwhich covers the different products we will process through the fluid\r\nbed drier,
\r\n
\r\n regards,
\r\n
\r\n Richard
\r\n
\r\n
\r\n RICHARD RALPH
\r\n Works Engineer
\r\n Nufarm (Australia) Pty Ltd
\r\n 
\r\n
\r\n
\r\n
\r\n
\r\n

\r\n

\r\n\r\n\r\n\r\n\r\n\r\n\r\n

(See attached file: 2039 Layout 1 (1).PDF)
\r\n
\r\n----- Forwarded by Richard Ralph/AU/Nufarm on 29/06/2009 05:14 PM -----
\r\n
\r\n\r\n\r\n\r\n
\r\n
    \r\n
      \r\n
        \r\n
          Richard Ralph/AU/Nufarm \r\n

          29/06/2009 05:13 PM

        \r\n
      \r\n
    \r\n
\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n

\r\n
To

\r\ncarpis@cmctechnologies.com.au

\r\n
cc

\r\n

\r\n
Subject

\r\nCMC7900WE252068-542OTAHHUH : I & F Granulation - Explosion Suppression System Budget Price
\r\n\r\n\r\n\r\n
\r\n
\r\nCon,
\r\n
\r\ngood morning.
\r\n
\r\nMy project in Auckland has had a number of design changes since we last spoke. The Fluid bed Drier and it''s associated Dust Collector are now reasonably close together and are now connected by 3 (three) off 400mm dia ducts. These ducts are L shaped and approximately 1.5m (horizontal) by 2.5m (vertical).
\r\n
\r\nCan you advise if this is going to be a problem with regards to protecting both vessels. The design Kst value is 250 Bar.s/m which covers the different products we will process through the fluid bed drier,
\r\n
\r\nregards,
\r\n
\r\nRichard
\r\n
\r\n
\r\nRICHARD RALPH
\r\nWorks Engineer
\r\nNufarm (Australia) Pty Ltd
\r\nP 08 9411 4050
\r\nF 08 9411 4068
\r\nM 0419 577 244
\r\ne richard.ralph@au.nufarm.com
\r\n
\r\nNo 1, Mason Road
\r\nKWINANA WA 6167
\r\n
\r\n
\r\n
\r\n
\r\n\r\n

\r\n\r\n\r\n', '', 'Tue, 30 Jun 2009 11:03:16 +1000', '2009-06-30 11:03:53', 66, '[Fwd: [Fwd: CMC7948VE352072-852OTAHHUH : I & F Granulation - Explosion Suppression System - Nufarm now redisigned]]'); -INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES -(22, 'vault@cmctechnologies.com.au ', '', 'karl@cmctechnologies.com.au', '\r\n\r\n\r\n \r\n \r\n\r\n\r\n
\r\n

\r\n\r\n******************************************************************************************************************************************
\r\n CMC Technologies Pty\r\nLimited - ACN: 085 991 224 , ABN: 47 085\r\n991 224
\r\n Engineering & Industrial Instrumentation
\r\n Unit 19, 77 Bourke Road
\r\n Alexandria, NSW, 2015
\r\n AUSTRALIA
\r\n phone: +61 2 9669 4000
\r\n fax    :  +61 2 9669 4111
\r\n web   : http://www.cmctechnologies.com.au
\r\n

Specialising in Fire and\r\nExplosion Prevention or Protection, Overpressure Protection, Vision in the Process,
\r\nFlow Measurement, Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging,\r\nOn-Line Analysers.
\r\n***************************************************************************************************
\r\nThe information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised
\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.

\r\n***********************************************************************************************

\r\n
\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: [Fwd: MC7948VE352072-852OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned]
Date: Tue, 30 Jun 2009 11:01:57 +1000
From: Karl - CMC Technologies <karl@cmctechnologies.com.au>
To: vault@cmctechnologies.com.au
\r\n
\r\n
\r\n\r\n
\r\n
\r\n\r\n******************************************************************************************************************************************
\r\n CMC Technologies Pty\r\nLimited - ACN: 085 991 224 , ABN: 47 085\r\n991 224
\r\n Engineering & Industrial Instrumentation
\r\n Unit 19, 77 Bourke Road
\r\n Alexandria, NSW, 2015
\r\n AUSTRALIA
\r\n phone: +61 2 9669 4000
\r\n fax    :  +61 2 9669 4111
\r\n web   : http://www.cmctechnologies.com.au
\r\n

Specialising in Fire and\r\nExplosion Prevention or Protection, Overpressure Protection, Vision in the Process,
\r\nFlow Measurement, Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging,\r\nOn-Line Analysers.
\r\n***************************************************************************************************
\r\nThe information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised
\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.

\r\n***********************************************************************************************

\r\n
\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: CMC7900WE252068-542OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned
Date: Tue, 30 Jun 2009 00:17:35 +1000
From: Con Carpis - CMC Technologies\r\n <carpis@cmctechnologies.com.au>
To: j.cleijne@atex100.com
CC: j.meistes@atex100.com, f.alfert@atex100.com,\r\n richard@cmctechnologies.com.au
\r\n
\r\n
\r\n\r\n Jan
\r\n
\r\nRemember we worked on this project earlier this year. The engineer in\r\nAustralia - site in Auckland NZ. The client now has the money but has\r\nchanged his process a little and I think its a little tricky- see\r\nattached and below.
\r\n
\r\nI assume we can stil do suppression /isolation for kst 250bar.m/sec.
\r\n
\r\nIt looks like we need suppression in dust collector and FBdrier and\r\nisolation between both - I will try to get more information but im\r\nconcerned about the 4m separation distance between the dust collector\r\nand the drier in the 3 x 400mm ducts . I cannot put a bottle in the\r\nmoddle and make it dual acting due to your guidelines. Im going to\r\nsuggest extension of these duct lengths but client may refuse due to\r\nconstraints - but please give me any other options we can suggest here.
\r\n
\r\nHere is my suggestion.
\r\nMaybe we have to use 2 bottles on each line for isolation. eg if\r\nexplosion in dust collector then an isolation bottle 3m from the dust\r\ncollector /approx 1m from the fb drier fires. If an explosion in the\r\nFBD then another isolation bottle 1m from the dust collector inlet\r\nfires - this solution if the client cannot increase the length of the\r\nduct work. Or if there is an explosion in dust collector then we fire\r\nall the bottles we propose in the FBdrier to act as isolation?  I need\r\nyour guidance how we direct this client.
\r\n
\r\nI will also  get the volumes  so we can work out details for\r\nsuppression on drier and dust collector and find out more to the inlet\r\nfeed and outlet of FBD
\r\n
\r\nCompetition is Fike and Kidde  - they are using Fike in New Zealand and\r\nKidde in Perth.
\r\n
\r\nLooking forward to your reply.
\r\n
\r\nRegards
\r\n
\r\nCon Carpis
\r\nBE Chem
\r\nManaging director
\r\n
\r\n*******************************************************************************************************
\r\nCMC Technologies Pty Limited
\r\nUnit 19, 77 Bourke Road
\r\nAlexandria NSW 2015
\r\nAustralia
\r\nABN 47 085 991 224
\r\n
\r\nph +61 2 9669 4000
\r\nfax =61 2 9669 4111
\r\nWeb http://www.cmctechnologies.com.au
\r\n
\r\nThe information in this email and attachments is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised and may be unlawful. Please inform the sender\r\nimmediately if you are not the intended addressee.
\r\n***********************************************************************************************************************************************************************************
\r\n\r\n
From: Richard Ralph [mailto:richard.ralph@au.nufarm.com]
\r\n To: carpis@cmctechnologies.com.au
\r\n Sent: Mon, 29 Jun 2009 19:15:14 +1000
\r\n Subject: Fw: CMC7900WE252068-542OTAHHUH : I & F\r\nGranulation - Explosion Suppression System Budget Price Plus GA drawing
\r\n
\r\n

(See attached file: 2039 Layout 1 (1).PDF)
\r\n
\r\n ----- Forwarded by Richard\r\nRalph/AU/Nufarm on 29/06/2009\r\n05:14 PM -----
\r\n
\r\n \r\n \r\n \r\n \r\n
    \r\n
      \r\n
        \r\n
          \r\n Richard Ralph/AU/Nufarm \r\n

          29/06/2009 05:13 PM

          \r\n
        \r\n
      \r\n
    \r\n
\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n

\r\n
To
\r\n

\r\n carpis@cmctechnologies.com.au

\r\n
cc
\r\n

\r\n

\r\n
Subject
\r\n

\r\n CMC7900WE252068-542OTAHHUH : I & F\r\nGranulation - Explosion Suppression System Budget Price
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n Con,
\r\n
\r\n good morning.
\r\n
\r\n My project in Auckland has had a number of design\r\nchanges since we last spoke. The Fluid bed Drier and it''s associated\r\nDust Collector are now reasonably close together and are now connected\r\nby 3 (three) off 400mm dia ducts. These ducts are L shaped and\r\napproximately 1.5m (horizontal) by 2.5m (vertical).
\r\n
\r\n Can you advise if this is going to be a problem with\r\nregards to protecting both vessels. The design Kst value is 250 Bar.s/m\r\nwhich covers the different products we will process through the fluid\r\nbed drier,
\r\n
\r\n regards,
\r\n
\r\n Richard
\r\n
\r\n
\r\n RICHARD RALPH
\r\n Works Engineer
\r\n Nufarm (Australia) Pty Ltd
\r\n 
\r\n
\r\n
\r\n
\r\n
\r\n

\r\n

\r\n\r\n\r\n\r\n\r\n\r\n\r\n

(See attached file: 2039 Layout 1 (1).PDF)
\r\n
\r\n----- Forwarded by Richard Ralph/AU/Nufarm on 29/06/2009 05:14 PM -----
\r\n
\r\n\r\n\r\n\r\n
\r\n
    \r\n
      \r\n
        \r\n
          Richard Ralph/AU/Nufarm \r\n

          29/06/2009 05:13 PM

        \r\n
      \r\n
    \r\n
\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n

\r\n
To

\r\ncarpis@cmctechnologies.com.au

\r\n
cc

\r\n

\r\n
Subject

\r\nCMC7900WE252068-542OTAHHUH : I & F Granulation - Explosion Suppression System Budget Price
\r\n\r\n\r\n\r\n
\r\n
\r\nCon,
\r\n
\r\ngood morning.
\r\n
\r\nMy project in Auckland has had a number of design changes since we last spoke. The Fluid bed Drier and it''s associated Dust Collector are now reasonably close together and are now connected by 3 (three) off 400mm dia ducts. These ducts are L shaped and approximately 1.5m (horizontal) by 2.5m (vertical).
\r\n
\r\nCan you advise if this is going to be a problem with regards to protecting both vessels. The design Kst value is 250 Bar.s/m which covers the different products we will process through the fluid bed drier,
\r\n
\r\nregards,
\r\n
\r\nRichard
\r\n
\r\n
\r\nRICHARD RALPH
\r\nWorks Engineer
\r\nNufarm (Australia) Pty Ltd
\r\nP 08 9411 4050
\r\nF 08 9411 4068
\r\nM 0419 577 244
\r\ne richard.ralph@au.nufarm.com
\r\n
\r\nNo 1, Mason Road
\r\nKWINANA WA 6167
\r\n
\r\n
\r\n
\r\n
\r\n\r\n

\r\n\r\n\r\n', '', 'Tue, 30 Jun 2009 11:03:16 +1000', '2009-06-30 11:14:41', 66, '[Fwd: [Fwd: CMC7948VE352072-852OTAHHUH : I & F Granulation - Explosion Suppression System - Nufarm now redisigned]]'), -(23, 'vault@cmctechnologies.com.au ', '', 'karl@cmctechnologies.com.au', '\r\n\r\n\r\n \r\n \r\n\r\n\r\n
\r\n

\r\n\r\n******************************************************************************************************************************************
\r\n CMC Technologies Pty\r\nLimited - ACN: 085 991 224 , ABN: 47 085\r\n991 224
\r\n Engineering & Industrial Instrumentation
\r\n Unit 19, 77 Bourke Road
\r\n Alexandria, NSW, 2015
\r\n AUSTRALIA
\r\n phone: +61 2 9669 4000
\r\n fax    :  +61 2 9669 4111
\r\n web   : http://www.cmctechnologies.com.au
\r\n

Specialising in Fire and\r\nExplosion Prevention or Protection, Overpressure Protection, Vision in the Process,
\r\nFlow Measurement, Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging,\r\nOn-Line Analysers.
\r\n***************************************************************************************************
\r\nThe information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised
\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.

\r\n***********************************************************************************************

\r\n
\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: [Fwd: MC7948VE352072-852OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned]
Date: Tue, 30 Jun 2009 11:01:57 +1000
From: Karl - CMC Technologies <karl@cmctechnologies.com.au>
To: vault@cmctechnologies.com.au
\r\n
\r\n
\r\n\r\n
\r\n
\r\n\r\n******************************************************************************************************************************************
\r\n CMC Technologies Pty\r\nLimited - ACN: 085 991 224 , ABN: 47 085\r\n991 224
\r\n Engineering & Industrial Instrumentation
\r\n Unit 19, 77 Bourke Road
\r\n Alexandria, NSW, 2015
\r\n AUSTRALIA
\r\n phone: +61 2 9669 4000
\r\n fax    :  +61 2 9669 4111
\r\n web   : http://www.cmctechnologies.com.au
\r\n

Specialising in Fire and\r\nExplosion Prevention or Protection, Overpressure Protection, Vision in the Process,
\r\nFlow Measurement, Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging,\r\nOn-Line Analysers.
\r\n***************************************************************************************************
\r\nThe information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised
\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.

\r\n***********************************************************************************************

\r\n
\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: CMC7900WE252068-542OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned
Date: Tue, 30 Jun 2009 00:17:35 +1000
From: Con Carpis - CMC Technologies\r\n <carpis@cmctechnologies.com.au>
To: j.cleijne@atex100.com
CC: j.meistes@atex100.com, f.alfert@atex100.com,\r\n richard@cmctechnologies.com.au
\r\n
\r\n
\r\n\r\n Jan
\r\n
\r\nRemember we worked on this project earlier this year. The engineer in\r\nAustralia - site in Auckland NZ. The client now has the money but has\r\nchanged his process a little and I think its a little tricky- see\r\nattached and below.
\r\n
\r\nI assume we can stil do suppression /isolation for kst 250bar.m/sec.
\r\n
\r\nIt looks like we need suppression in dust collector and FBdrier and\r\nisolation between both - I will try to get more information but im\r\nconcerned about the 4m separation distance between the dust collector\r\nand the drier in the 3 x 400mm ducts . I cannot put a bottle in the\r\nmoddle and make it dual acting due to your guidelines. Im going to\r\nsuggest extension of these duct lengths but client may refuse due to\r\nconstraints - but please give me any other options we can suggest here.
\r\n
\r\nHere is my suggestion.
\r\nMaybe we have to use 2 bottles on each line for isolation. eg if\r\nexplosion in dust collector then an isolation bottle 3m from the dust\r\ncollector /approx 1m from the fb drier fires. If an explosion in the\r\nFBD then another isolation bottle 1m from the dust collector inlet\r\nfires - this solution if the client cannot increase the length of the\r\nduct work. Or if there is an explosion in dust collector then we fire\r\nall the bottles we propose in the FBdrier to act as isolation?  I need\r\nyour guidance how we direct this client.
\r\n
\r\nI will also  get the volumes  so we can work out details for\r\nsuppression on drier and dust collector and find out more to the inlet\r\nfeed and outlet of FBD
\r\n
\r\nCompetition is Fike and Kidde  - they are using Fike in New Zealand and\r\nKidde in Perth.
\r\n
\r\nLooking forward to your reply.
\r\n
\r\nRegards
\r\n
\r\nCon Carpis
\r\nBE Chem
\r\nManaging director
\r\n
\r\n*******************************************************************************************************
\r\nCMC Technologies Pty Limited
\r\nUnit 19, 77 Bourke Road
\r\nAlexandria NSW 2015
\r\nAustralia
\r\nABN 47 085 991 224
\r\n
\r\nph +61 2 9669 4000
\r\nfax =61 2 9669 4111
\r\nWeb http://www.cmctechnologies.com.au
\r\n
\r\nThe information in this email and attachments is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised and may be unlawful. Please inform the sender\r\nimmediately if you are not the intended addressee.
\r\n***********************************************************************************************************************************************************************************
\r\n\r\n
From: Richard Ralph [mailto:richard.ralph@au.nufarm.com]
\r\n To: carpis@cmctechnologies.com.au
\r\n Sent: Mon, 29 Jun 2009 19:15:14 +1000
\r\n Subject: Fw: CMC7900WE252068-542OTAHHUH : I & F\r\nGranulation - Explosion Suppression System Budget Price Plus GA drawing
\r\n
\r\n

(See attached file: 2039 Layout 1 (1).PDF)
\r\n
\r\n ----- Forwarded by Richard\r\nRalph/AU/Nufarm on 29/06/2009\r\n05:14 PM -----
\r\n
\r\n \r\n \r\n \r\n \r\n
    \r\n
      \r\n
        \r\n
          \r\n Richard Ralph/AU/Nufarm \r\n

          29/06/2009 05:13 PM

          \r\n
        \r\n
      \r\n
    \r\n
\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n

\r\n
To
\r\n

\r\n carpis@cmctechnologies.com.au

\r\n
cc
\r\n

\r\n

\r\n
Subject
\r\n

\r\n CMC7900WE252068-542OTAHHUH : I & F\r\nGranulation - Explosion Suppression System Budget Price
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n Con,
\r\n
\r\n good morning.
\r\n
\r\n My project in Auckland has had a number of design\r\nchanges since we last spoke. The Fluid bed Drier and it''s associated\r\nDust Collector are now reasonably close together and are now connected\r\nby 3 (three) off 400mm dia ducts. These ducts are L shaped and\r\napproximately 1.5m (horizontal) by 2.5m (vertical).
\r\n
\r\n Can you advise if this is going to be a problem with\r\nregards to protecting both vessels. The design Kst value is 250 Bar.s/m\r\nwhich covers the different products we will process through the fluid\r\nbed drier,
\r\n
\r\n regards,
\r\n
\r\n Richard
\r\n
\r\n
\r\n RICHARD RALPH
\r\n Works Engineer
\r\n Nufarm (Australia) Pty Ltd
\r\n 
\r\n
\r\n
\r\n
\r\n
\r\n

\r\n

\r\n\r\n\r\n\r\n\r\n\r\n\r\n

(See attached file: 2039 Layout 1 (1).PDF)
\r\n
\r\n----- Forwarded by Richard Ralph/AU/Nufarm on 29/06/2009 05:14 PM -----
\r\n
\r\n\r\n\r\n\r\n
\r\n
    \r\n
      \r\n
        \r\n
          Richard Ralph/AU/Nufarm \r\n

          29/06/2009 05:13 PM

        \r\n
      \r\n
    \r\n
\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n

\r\n
To

\r\ncarpis@cmctechnologies.com.au

\r\n
cc

\r\n

\r\n
Subject

\r\nCMC7900WE252068-542OTAHHUH : I & F Granulation - Explosion Suppression System Budget Price
\r\n\r\n\r\n\r\n
\r\n
\r\nCon,
\r\n
\r\ngood morning.
\r\n
\r\nMy project in Auckland has had a number of design changes since we last spoke. The Fluid bed Drier and it''s associated Dust Collector are now reasonably close together and are now connected by 3 (three) off 400mm dia ducts. These ducts are L shaped and approximately 1.5m (horizontal) by 2.5m (vertical).
\r\n
\r\nCan you advise if this is going to be a problem with regards to protecting both vessels. The design Kst value is 250 Bar.s/m which covers the different products we will process through the fluid bed drier,
\r\n
\r\nregards,
\r\n
\r\nRichard
\r\n
\r\n
\r\nRICHARD RALPH
\r\nWorks Engineer
\r\nNufarm (Australia) Pty Ltd
\r\nP 08 9411 4050
\r\nF 08 9411 4068
\r\nM 0419 577 244
\r\ne richard.ralph@au.nufarm.com
\r\n
\r\nNo 1, Mason Road
\r\nKWINANA WA 6167
\r\n
\r\n
\r\n
\r\n
\r\n\r\n

\r\n\r\n\r\n', '', 'Tue, 30 Jun 2009 11:03:16 +1000', '2009-06-30 11:18:53', 66, '[Fwd: [Fwd: CMC7948VE352072-852OTAHHUH : I & F Granulation - Explosion Suppression System - Nufarm now redisigned]]'); -INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES -(24, 'vault@cmctechnologies.com.au ', '', 'karl@cmctechnologies.com.au', '\r\n\r\n\r\n \r\n \r\n\r\n\r\n
\r\n

\r\n\r\n******************************************************************************************************************************************
\r\n CMC Technologies Pty\r\nLimited - ACN: 085 991 224 , ABN: 47 085\r\n991 224
\r\n Engineering & Industrial Instrumentation
\r\n Unit 19, 77 Bourke Road
\r\n Alexandria, NSW, 2015
\r\n AUSTRALIA
\r\n phone: +61 2 9669 4000
\r\n fax    :  +61 2 9669 4111
\r\n web   : http://www.cmctechnologies.com.au
\r\n

Specialising in Fire and\r\nExplosion Prevention or Protection, Overpressure Protection, Vision in the Process,
\r\nFlow Measurement, Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging,\r\nOn-Line Analysers.
\r\n***************************************************************************************************
\r\nThe information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised
\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.

\r\n***********************************************************************************************

\r\n
\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: [Fwd: MC7948VE352072-852OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned]
Date: Tue, 30 Jun 2009 11:01:57 +1000
From: Karl - CMC Technologies <karl@cmctechnologies.com.au>
To: vault@cmctechnologies.com.au
\r\n
\r\n
\r\n\r\n
\r\n
\r\n\r\n******************************************************************************************************************************************
\r\n CMC Technologies Pty\r\nLimited - ACN: 085 991 224 , ABN: 47 085\r\n991 224
\r\n Engineering & Industrial Instrumentation
\r\n Unit 19, 77 Bourke Road
\r\n Alexandria, NSW, 2015
\r\n AUSTRALIA
\r\n phone: +61 2 9669 4000
\r\n fax    :  +61 2 9669 4111
\r\n web   : http://www.cmctechnologies.com.au
\r\n

Specialising in Fire and\r\nExplosion Prevention or Protection, Overpressure Protection, Vision in the Process,
\r\nFlow Measurement, Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging,\r\nOn-Line Analysers.
\r\n***************************************************************************************************
\r\nThe information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised
\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.

\r\n***********************************************************************************************

\r\n
\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: CMC7900WE252068-542OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned
Date: Tue, 30 Jun 2009 00:17:35 +1000
From: Con Carpis - CMC Technologies\r\n <carpis@cmctechnologies.com.au>
To: j.cleijne@atex100.com
CC: j.meistes@atex100.com, f.alfert@atex100.com,\r\n richard@cmctechnologies.com.au
\r\n
\r\n
\r\n\r\n Jan
\r\n
\r\nRemember we worked on this project earlier this year. The engineer in\r\nAustralia - site in Auckland NZ. The client now has the money but has\r\nchanged his process a little and I think its a little tricky- see\r\nattached and below.
\r\n
\r\nI assume we can stil do suppression /isolation for kst 250bar.m/sec.
\r\n
\r\nIt looks like we need suppression in dust collector and FBdrier and\r\nisolation between both - I will try to get more information but im\r\nconcerned about the 4m separation distance between the dust collector\r\nand the drier in the 3 x 400mm ducts . I cannot put a bottle in the\r\nmoddle and make it dual acting due to your guidelines. Im going to\r\nsuggest extension of these duct lengths but client may refuse due to\r\nconstraints - but please give me any other options we can suggest here.
\r\n
\r\nHere is my suggestion.
\r\nMaybe we have to use 2 bottles on each line for isolation. eg if\r\nexplosion in dust collector then an isolation bottle 3m from the dust\r\ncollector /approx 1m from the fb drier fires. If an explosion in the\r\nFBD then another isolation bottle 1m from the dust collector inlet\r\nfires - this solution if the client cannot increase the length of the\r\nduct work. Or if there is an explosion in dust collector then we fire\r\nall the bottles we propose in the FBdrier to act as isolation?  I need\r\nyour guidance how we direct this client.
\r\n
\r\nI will also  get the volumes  so we can work out details for\r\nsuppression on drier and dust collector and find out more to the inlet\r\nfeed and outlet of FBD
\r\n
\r\nCompetition is Fike and Kidde  - they are using Fike in New Zealand and\r\nKidde in Perth.
\r\n
\r\nLooking forward to your reply.
\r\n
\r\nRegards
\r\n
\r\nCon Carpis
\r\nBE Chem
\r\nManaging director
\r\n
\r\n*******************************************************************************************************
\r\nCMC Technologies Pty Limited
\r\nUnit 19, 77 Bourke Road
\r\nAlexandria NSW 2015
\r\nAustralia
\r\nABN 47 085 991 224
\r\n
\r\nph +61 2 9669 4000
\r\nfax =61 2 9669 4111
\r\nWeb http://www.cmctechnologies.com.au
\r\n
\r\nThe information in this email and attachments is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised and may be unlawful. Please inform the sender\r\nimmediately if you are not the intended addressee.
\r\n***********************************************************************************************************************************************************************************
\r\n\r\n
From: Richard Ralph [mailto:richard.ralph@au.nufarm.com]
\r\n To: carpis@cmctechnologies.com.au
\r\n Sent: Mon, 29 Jun 2009 19:15:14 +1000
\r\n Subject: Fw: CMC7900WE252068-542OTAHHUH : I & F\r\nGranulation - Explosion Suppression System Budget Price Plus GA drawing
\r\n
\r\n

(See attached file: 2039 Layout 1 (1).PDF)
\r\n
\r\n ----- Forwarded by Richard\r\nRalph/AU/Nufarm on 29/06/2009\r\n05:14 PM -----
\r\n
\r\n \r\n \r\n \r\n \r\n
    \r\n
      \r\n
        \r\n
          \r\n Richard Ralph/AU/Nufarm \r\n

          29/06/2009 05:13 PM

          \r\n
        \r\n
      \r\n
    \r\n
\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n

\r\n
To
\r\n

\r\n carpis@cmctechnologies.com.au

\r\n
cc
\r\n

\r\n

\r\n
Subject
\r\n

\r\n CMC7900WE252068-542OTAHHUH : I & F\r\nGranulation - Explosion Suppression System Budget Price
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n Con,
\r\n
\r\n good morning.
\r\n
\r\n My project in Auckland has had a number of design\r\nchanges since we last spoke. The Fluid bed Drier and it''s associated\r\nDust Collector are now reasonably close together and are now connected\r\nby 3 (three) off 400mm dia ducts. These ducts are L shaped and\r\napproximately 1.5m (horizontal) by 2.5m (vertical).
\r\n
\r\n Can you advise if this is going to be a problem with\r\nregards to protecting both vessels. The design Kst value is 250 Bar.s/m\r\nwhich covers the different products we will process through the fluid\r\nbed drier,
\r\n
\r\n regards,
\r\n
\r\n Richard
\r\n
\r\n
\r\n RICHARD RALPH
\r\n Works Engineer
\r\n Nufarm (Australia) Pty Ltd
\r\n 
\r\n
\r\n
\r\n
\r\n
\r\n

\r\n

\r\n\r\n\r\n\r\n\r\n\r\n\r\n

(See attached file: 2039 Layout 1 (1).PDF)
\r\n
\r\n----- Forwarded by Richard Ralph/AU/Nufarm on 29/06/2009 05:14 PM -----
\r\n
\r\n\r\n\r\n\r\n
\r\n
    \r\n
      \r\n
        \r\n
          Richard Ralph/AU/Nufarm \r\n

          29/06/2009 05:13 PM

        \r\n
      \r\n
    \r\n
\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n

\r\n
To

\r\ncarpis@cmctechnologies.com.au

\r\n
cc

\r\n

\r\n
Subject

\r\nCMC7900WE252068-542OTAHHUH : I & F Granulation - Explosion Suppression System Budget Price
\r\n\r\n\r\n\r\n
\r\n
\r\nCon,
\r\n
\r\ngood morning.
\r\n
\r\nMy project in Auckland has had a number of design changes since we last spoke. The Fluid bed Drier and it''s associated Dust Collector are now reasonably close together and are now connected by 3 (three) off 400mm dia ducts. These ducts are L shaped and approximately 1.5m (horizontal) by 2.5m (vertical).
\r\n
\r\nCan you advise if this is going to be a problem with regards to protecting both vessels. The design Kst value is 250 Bar.s/m which covers the different products we will process through the fluid bed drier,
\r\n
\r\nregards,
\r\n
\r\nRichard
\r\n
\r\n
\r\nRICHARD RALPH
\r\nWorks Engineer
\r\nNufarm (Australia) Pty Ltd
\r\nP 08 9411 4050
\r\nF 08 9411 4068
\r\nM 0419 577 244
\r\ne richard.ralph@au.nufarm.com
\r\n
\r\nNo 1, Mason Road
\r\nKWINANA WA 6167
\r\n
\r\n
\r\n
\r\n
\r\n\r\n

\r\n\r\n\r\n', '', 'Tue, 30 Jun 2009 11:03:16 +1000', '2009-06-30 11:22:23', 66, '[Fwd: [Fwd: CMC7948VE352072-852OTAHHUH : I & F Granulation - Explosion Suppression System - Nufarm now redisigned]]'), -(25, 'vault@cmctechnologies.com.au ', '', 'karl@cmctechnologies.com.au', '\r\n\r\n\r\n \r\n \r\n\r\n\r\n
\r\n

\r\n\r\n******************************************************************************************************************************************
\r\n CMC Technologies Pty\r\nLimited - ACN: 085 991 224 , ABN: 47 085\r\n991 224
\r\n Engineering & Industrial Instrumentation
\r\n Unit 19, 77 Bourke Road
\r\n Alexandria, NSW, 2015
\r\n AUSTRALIA
\r\n phone: +61 2 9669 4000
\r\n fax    :  +61 2 9669 4111
\r\n web   : http://www.cmctechnologies.com.au
\r\n

Specialising in Fire and\r\nExplosion Prevention or Protection, Overpressure Protection, Vision in the Process,
\r\nFlow Measurement, Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging,\r\nOn-Line Analysers.
\r\n***************************************************************************************************
\r\nThe information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised
\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.

\r\n***********************************************************************************************

\r\n
\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: [Fwd: MC7948VE352072-852OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned]
Date: Tue, 30 Jun 2009 11:01:57 +1000
From: Karl - CMC Technologies <karl@cmctechnologies.com.au>
To: vault@cmctechnologies.com.au
\r\n
\r\n
\r\n\r\n
\r\n
\r\n\r\n******************************************************************************************************************************************
\r\n CMC Technologies Pty\r\nLimited - ACN: 085 991 224 , ABN: 47 085\r\n991 224
\r\n Engineering & Industrial Instrumentation
\r\n Unit 19, 77 Bourke Road
\r\n Alexandria, NSW, 2015
\r\n AUSTRALIA
\r\n phone: +61 2 9669 4000
\r\n fax    :  +61 2 9669 4111
\r\n web   : http://www.cmctechnologies.com.au
\r\n

Specialising in Fire and\r\nExplosion Prevention or Protection, Overpressure Protection, Vision in the Process,
\r\nFlow Measurement, Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging,\r\nOn-Line Analysers.
\r\n***************************************************************************************************
\r\nThe information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised
\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.

\r\n***********************************************************************************************

\r\n
\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: CMC7900WE252068-542OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned
Date: Tue, 30 Jun 2009 00:17:35 +1000
From: Con Carpis - CMC Technologies\r\n <carpis@cmctechnologies.com.au>
To: j.cleijne@atex100.com
CC: j.meistes@atex100.com, f.alfert@atex100.com,\r\n richard@cmctechnologies.com.au
\r\n
\r\n
\r\n\r\n Jan
\r\n
\r\nRemember we worked on this project earlier this year. The engineer in\r\nAustralia - site in Auckland NZ. The client now has the money but has\r\nchanged his process a little and I think its a little tricky- see\r\nattached and below.
\r\n
\r\nI assume we can stil do suppression /isolation for kst 250bar.m/sec.
\r\n
\r\nIt looks like we need suppression in dust collector and FBdrier and\r\nisolation between both - I will try to get more information but im\r\nconcerned about the 4m separation distance between the dust collector\r\nand the drier in the 3 x 400mm ducts . I cannot put a bottle in the\r\nmoddle and make it dual acting due to your guidelines. Im going to\r\nsuggest extension of these duct lengths but client may refuse due to\r\nconstraints - but please give me any other options we can suggest here.
\r\n
\r\nHere is my suggestion.
\r\nMaybe we have to use 2 bottles on each line for isolation. eg if\r\nexplosion in dust collector then an isolation bottle 3m from the dust\r\ncollector /approx 1m from the fb drier fires. If an explosion in the\r\nFBD then another isolation bottle 1m from the dust collector inlet\r\nfires - this solution if the client cannot increase the length of the\r\nduct work. Or if there is an explosion in dust collector then we fire\r\nall the bottles we propose in the FBdrier to act as isolation?  I need\r\nyour guidance how we direct this client.
\r\n
\r\nI will also  get the volumes  so we can work out details for\r\nsuppression on drier and dust collector and find out more to the inlet\r\nfeed and outlet of FBD
\r\n
\r\nCompetition is Fike and Kidde  - they are using Fike in New Zealand and\r\nKidde in Perth.
\r\n
\r\nLooking forward to your reply.
\r\n
\r\nRegards
\r\n
\r\nCon Carpis
\r\nBE Chem
\r\nManaging director
\r\n
\r\n*******************************************************************************************************
\r\nCMC Technologies Pty Limited
\r\nUnit 19, 77 Bourke Road
\r\nAlexandria NSW 2015
\r\nAustralia
\r\nABN 47 085 991 224
\r\n
\r\nph +61 2 9669 4000
\r\nfax =61 2 9669 4111
\r\nWeb http://www.cmctechnologies.com.au
\r\n
\r\nThe information in this email and attachments is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised and may be unlawful. Please inform the sender\r\nimmediately if you are not the intended addressee.
\r\n***********************************************************************************************************************************************************************************
\r\n\r\n
From: Richard Ralph [mailto:richard.ralph@au.nufarm.com]
\r\n To: carpis@cmctechnologies.com.au
\r\n Sent: Mon, 29 Jun 2009 19:15:14 +1000
\r\n Subject: Fw: CMC7900WE252068-542OTAHHUH : I & F\r\nGranulation - Explosion Suppression System Budget Price Plus GA drawing
\r\n
\r\n

(See attached file: 2039 Layout 1 (1).PDF)
\r\n
\r\n ----- Forwarded by Richard\r\nRalph/AU/Nufarm on 29/06/2009\r\n05:14 PM -----
\r\n
\r\n \r\n \r\n \r\n \r\n
    \r\n
      \r\n
        \r\n
          \r\n Richard Ralph/AU/Nufarm \r\n

          29/06/2009 05:13 PM

          \r\n
        \r\n
      \r\n
    \r\n
\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n

\r\n
To
\r\n

\r\n carpis@cmctechnologies.com.au

\r\n
cc
\r\n

\r\n

\r\n
Subject
\r\n

\r\n CMC7900WE252068-542OTAHHUH : I & F\r\nGranulation - Explosion Suppression System Budget Price
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n Con,
\r\n
\r\n good morning.
\r\n
\r\n My project in Auckland has had a number of design\r\nchanges since we last spoke. The Fluid bed Drier and it''s associated\r\nDust Collector are now reasonably close together and are now connected\r\nby 3 (three) off 400mm dia ducts. These ducts are L shaped and\r\napproximately 1.5m (horizontal) by 2.5m (vertical).
\r\n
\r\n Can you advise if this is going to be a problem with\r\nregards to protecting both vessels. The design Kst value is 250 Bar.s/m\r\nwhich covers the different products we will process through the fluid\r\nbed drier,
\r\n
\r\n regards,
\r\n
\r\n Richard
\r\n
\r\n
\r\n RICHARD RALPH
\r\n Works Engineer
\r\n Nufarm (Australia) Pty Ltd
\r\n 
\r\n
\r\n
\r\n
\r\n
\r\n

\r\n

\r\n\r\n\r\n\r\n\r\n\r\n\r\n

(See attached file: 2039 Layout 1 (1).PDF)
\r\n
\r\n----- Forwarded by Richard Ralph/AU/Nufarm on 29/06/2009 05:14 PM -----
\r\n
\r\n\r\n\r\n\r\n
\r\n
    \r\n
      \r\n
        \r\n
          Richard Ralph/AU/Nufarm \r\n

          29/06/2009 05:13 PM

        \r\n
      \r\n
    \r\n
\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n

\r\n
To

\r\ncarpis@cmctechnologies.com.au

\r\n
cc

\r\n

\r\n
Subject

\r\nCMC7900WE252068-542OTAHHUH : I & F Granulation - Explosion Suppression System Budget Price
\r\n\r\n\r\n\r\n
\r\n
\r\nCon,
\r\n
\r\ngood morning.
\r\n
\r\nMy project in Auckland has had a number of design changes since we last spoke. The Fluid bed Drier and it''s associated Dust Collector are now reasonably close together and are now connected by 3 (three) off 400mm dia ducts. These ducts are L shaped and approximately 1.5m (horizontal) by 2.5m (vertical).
\r\n
\r\nCan you advise if this is going to be a problem with regards to protecting both vessels. The design Kst value is 250 Bar.s/m which covers the different products we will process through the fluid bed drier,
\r\n
\r\nregards,
\r\n
\r\nRichard
\r\n
\r\n
\r\nRICHARD RALPH
\r\nWorks Engineer
\r\nNufarm (Australia) Pty Ltd
\r\nP 08 9411 4050
\r\nF 08 9411 4068
\r\nM 0419 577 244
\r\ne richard.ralph@au.nufarm.com
\r\n
\r\nNo 1, Mason Road
\r\nKWINANA WA 6167
\r\n
\r\n
\r\n
\r\n
\r\n\r\n

\r\n\r\n\r\n', '', 'Tue, 30 Jun 2009 11:03:16 +1000', '2009-06-30 11:22:33', 66, '[Fwd: [Fwd: CMC7948VE352072-852OTAHHUH : I & F Granulation - Explosion Suppression System - Nufarm now redisigned]]'); -INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES -(26, 'vault@cmctechnologies.com.au ', '', 'karl@cmctechnologies.com.au', '\r\n\r\n\r\n \r\n \r\n\r\n\r\n
\r\n

\r\n\r\n******************************************************************************************************************************************
\r\n CMC Technologies Pty\r\nLimited - ACN: 085 991 224 , ABN: 47 085\r\n991 224
\r\n Engineering & Industrial Instrumentation
\r\n Unit 19, 77 Bourke Road
\r\n Alexandria, NSW, 2015
\r\n AUSTRALIA
\r\n phone: +61 2 9669 4000
\r\n fax    :  +61 2 9669 4111
\r\n web   : http://www.cmctechnologies.com.au
\r\n

Specialising in Fire and\r\nExplosion Prevention or Protection, Overpressure Protection, Vision in the Process,
\r\nFlow Measurement, Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging,\r\nOn-Line Analysers.
\r\n***************************************************************************************************
\r\nThe information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised
\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.

\r\n***********************************************************************************************

\r\n
\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: [Fwd: MC7948VE352072-852OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned]
Date: Tue, 30 Jun 2009 11:01:57 +1000
From: Karl - CMC Technologies <karl@cmctechnologies.com.au>
To: vault@cmctechnologies.com.au
\r\n
\r\n
\r\n\r\n
\r\n
\r\n\r\n******************************************************************************************************************************************
\r\n CMC Technologies Pty\r\nLimited - ACN: 085 991 224 , ABN: 47 085\r\n991 224
\r\n Engineering & Industrial Instrumentation
\r\n Unit 19, 77 Bourke Road
\r\n Alexandria, NSW, 2015
\r\n AUSTRALIA
\r\n phone: +61 2 9669 4000
\r\n fax    :  +61 2 9669 4111
\r\n web   : http://www.cmctechnologies.com.au
\r\n

Specialising in Fire and\r\nExplosion Prevention or Protection, Overpressure Protection, Vision in the Process,
\r\nFlow Measurement, Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging,\r\nOn-Line Analysers.
\r\n***************************************************************************************************
\r\nThe information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised
\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.

\r\n***********************************************************************************************

\r\n
\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: CMC7900WE252068-542OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned
Date: Tue, 30 Jun 2009 00:17:35 +1000
From: Con Carpis - CMC Technologies\r\n <carpis@cmctechnologies.com.au>
To: j.cleijne@atex100.com
CC: j.meistes@atex100.com, f.alfert@atex100.com,\r\n richard@cmctechnologies.com.au
\r\n
\r\n
\r\n\r\n Jan
\r\n
\r\nRemember we worked on this project earlier this year. The engineer in\r\nAustralia - site in Auckland NZ. The client now has the money but has\r\nchanged his process a little and I think its a little tricky- see\r\nattached and below.
\r\n
\r\nI assume we can stil do suppression /isolation for kst 250bar.m/sec.
\r\n
\r\nIt looks like we need suppression in dust collector and FBdrier and\r\nisolation between both - I will try to get more information but im\r\nconcerned about the 4m separation distance between the dust collector\r\nand the drier in the 3 x 400mm ducts . I cannot put a bottle in the\r\nmoddle and make it dual acting due to your guidelines. Im going to\r\nsuggest extension of these duct lengths but client may refuse due to\r\nconstraints - but please give me any other options we can suggest here.
\r\n
\r\nHere is my suggestion.
\r\nMaybe we have to use 2 bottles on each line for isolation. eg if\r\nexplosion in dust collector then an isolation bottle 3m from the dust\r\ncollector /approx 1m from the fb drier fires. If an explosion in the\r\nFBD then another isolation bottle 1m from the dust collector inlet\r\nfires - this solution if the client cannot increase the length of the\r\nduct work. Or if there is an explosion in dust collector then we fire\r\nall the bottles we propose in the FBdrier to act as isolation?  I need\r\nyour guidance how we direct this client.
\r\n
\r\nI will also  get the volumes  so we can work out details for\r\nsuppression on drier and dust collector and find out more to the inlet\r\nfeed and outlet of FBD
\r\n
\r\nCompetition is Fike and Kidde  - they are using Fike in New Zealand and\r\nKidde in Perth.
\r\n
\r\nLooking forward to your reply.
\r\n
\r\nRegards
\r\n
\r\nCon Carpis
\r\nBE Chem
\r\nManaging director
\r\n
\r\n*******************************************************************************************************
\r\nCMC Technologies Pty Limited
\r\nUnit 19, 77 Bourke Road
\r\nAlexandria NSW 2015
\r\nAustralia
\r\nABN 47 085 991 224
\r\n
\r\nph +61 2 9669 4000
\r\nfax =61 2 9669 4111
\r\nWeb http://www.cmctechnologies.com.au
\r\n
\r\nThe information in this email and attachments is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised and may be unlawful. Please inform the sender\r\nimmediately if you are not the intended addressee.
\r\n***********************************************************************************************************************************************************************************
\r\n\r\n
From: Richard Ralph [mailto:richard.ralph@au.nufarm.com]
\r\n To: carpis@cmctechnologies.com.au
\r\n Sent: Mon, 29 Jun 2009 19:15:14 +1000
\r\n Subject: Fw: CMC7900WE252068-542OTAHHUH : I & F\r\nGranulation - Explosion Suppression System Budget Price Plus GA drawing
\r\n
\r\n

(See attached file: 2039 Layout 1 (1).PDF)
\r\n
\r\n ----- Forwarded by Richard\r\nRalph/AU/Nufarm on 29/06/2009\r\n05:14 PM -----
\r\n
\r\n \r\n \r\n \r\n \r\n
    \r\n
      \r\n
        \r\n
          \r\n Richard Ralph/AU/Nufarm \r\n

          29/06/2009 05:13 PM

          \r\n
        \r\n
      \r\n
    \r\n
\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n

\r\n
To
\r\n

\r\n carpis@cmctechnologies.com.au

\r\n
cc
\r\n

\r\n

\r\n
Subject
\r\n

\r\n CMC7900WE252068-542OTAHHUH : I & F\r\nGranulation - Explosion Suppression System Budget Price
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n Con,
\r\n
\r\n good morning.
\r\n
\r\n My project in Auckland has had a number of design\r\nchanges since we last spoke. The Fluid bed Drier and it''s associated\r\nDust Collector are now reasonably close together and are now connected\r\nby 3 (three) off 400mm dia ducts. These ducts are L shaped and\r\napproximately 1.5m (horizontal) by 2.5m (vertical).
\r\n
\r\n Can you advise if this is going to be a problem with\r\nregards to protecting both vessels. The design Kst value is 250 Bar.s/m\r\nwhich covers the different products we will process through the fluid\r\nbed drier,
\r\n
\r\n regards,
\r\n
\r\n Richard
\r\n
\r\n
\r\n RICHARD RALPH
\r\n Works Engineer
\r\n Nufarm (Australia) Pty Ltd
\r\n 
\r\n
\r\n
\r\n
\r\n
\r\n

\r\n

\r\n\r\n\r\n\r\n\r\n\r\n\r\n

(See attached file: 2039 Layout 1 (1).PDF)
\r\n
\r\n----- Forwarded by Richard Ralph/AU/Nufarm on 29/06/2009 05:14 PM -----
\r\n
\r\n\r\n\r\n\r\n
\r\n
    \r\n
      \r\n
        \r\n
          Richard Ralph/AU/Nufarm \r\n

          29/06/2009 05:13 PM

        \r\n
      \r\n
    \r\n
\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n

\r\n
To

\r\ncarpis@cmctechnologies.com.au

\r\n
cc

\r\n

\r\n
Subject

\r\nCMC7900WE252068-542OTAHHUH : I & F Granulation - Explosion Suppression System Budget Price
\r\n\r\n\r\n\r\n
\r\n
\r\nCon,
\r\n
\r\ngood morning.
\r\n
\r\nMy project in Auckland has had a number of design changes since we last spoke. The Fluid bed Drier and it''s associated Dust Collector are now reasonably close together and are now connected by 3 (three) off 400mm dia ducts. These ducts are L shaped and approximately 1.5m (horizontal) by 2.5m (vertical).
\r\n
\r\nCan you advise if this is going to be a problem with regards to protecting both vessels. The design Kst value is 250 Bar.s/m which covers the different products we will process through the fluid bed drier,
\r\n
\r\nregards,
\r\n
\r\nRichard
\r\n
\r\n
\r\nRICHARD RALPH
\r\nWorks Engineer
\r\nNufarm (Australia) Pty Ltd
\r\nP 08 9411 4050
\r\nF 08 9411 4068
\r\nM 0419 577 244
\r\ne richard.ralph@au.nufarm.com
\r\n
\r\nNo 1, Mason Road
\r\nKWINANA WA 6167
\r\n
\r\n
\r\n
\r\n
\r\n\r\n

\r\n\r\n\r\n', '', 'Tue, 30 Jun 2009 11:03:16 +1000', '2009-06-30 12:03:54', 66, '[Fwd: [Fwd: CMC7948VE352072-852OTAHHUH : I & F Granulation - Explosion Suppression System - Nufarm now redisigned]]'), -(27, 'vault@cmctechnologies.com.au ', '', 'karl@cmctechnologies.com.au', '\r\n\r\n\r\n \r\n \r\n\r\n\r\n
\r\n

\r\n\r\n******************************************************************************************************************************************
\r\n CMC Technologies Pty\r\nLimited - ACN: 085 991 224 , ABN: 47 085\r\n991 224
\r\n Engineering & Industrial Instrumentation
\r\n Unit 19, 77 Bourke Road
\r\n Alexandria, NSW, 2015
\r\n AUSTRALIA
\r\n phone: +61 2 9669 4000
\r\n fax    :  +61 2 9669 4111
\r\n web   : http://www.cmctechnologies.com.au
\r\n

Specialising in Fire and\r\nExplosion Prevention or Protection, Overpressure Protection, Vision in the Process,
\r\nFlow Measurement, Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging,\r\nOn-Line Analysers.
\r\n***************************************************************************************************
\r\nThe information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised
\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.

\r\n***********************************************************************************************

\r\n
\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: [Fwd: MC7948VE352072-852OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned]
Date: Tue, 30 Jun 2009 11:01:57 +1000
From: Karl - CMC Technologies <karl@cmctechnologies.com.au>
To: vault@cmctechnologies.com.au
\r\n
\r\n
\r\n\r\n
\r\n
\r\n\r\n******************************************************************************************************************************************
\r\n CMC Technologies Pty\r\nLimited - ACN: 085 991 224 , ABN: 47 085\r\n991 224
\r\n Engineering & Industrial Instrumentation
\r\n Unit 19, 77 Bourke Road
\r\n Alexandria, NSW, 2015
\r\n AUSTRALIA
\r\n phone: +61 2 9669 4000
\r\n fax    :  +61 2 9669 4111
\r\n web   : http://www.cmctechnologies.com.au
\r\n

Specialising in Fire and\r\nExplosion Prevention or Protection, Overpressure Protection, Vision in the Process,
\r\nFlow Measurement, Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging,\r\nOn-Line Analysers.
\r\n***************************************************************************************************
\r\nThe information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised
\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.

\r\n***********************************************************************************************

\r\n
\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: CMC7900WE252068-542OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned
Date: Tue, 30 Jun 2009 00:17:35 +1000
From: Con Carpis - CMC Technologies\r\n <carpis@cmctechnologies.com.au>
To: j.cleijne@atex100.com
CC: j.meistes@atex100.com, f.alfert@atex100.com,\r\n richard@cmctechnologies.com.au
\r\n
\r\n
\r\n\r\n Jan
\r\n
\r\nRemember we worked on this project earlier this year. The engineer in\r\nAustralia - site in Auckland NZ. The client now has the money but has\r\nchanged his process a little and I think its a little tricky- see\r\nattached and below.
\r\n
\r\nI assume we can stil do suppression /isolation for kst 250bar.m/sec.
\r\n
\r\nIt looks like we need suppression in dust collector and FBdrier and\r\nisolation between both - I will try to get more information but im\r\nconcerned about the 4m separation distance between the dust collector\r\nand the drier in the 3 x 400mm ducts . I cannot put a bottle in the\r\nmoddle and make it dual acting due to your guidelines. Im going to\r\nsuggest extension of these duct lengths but client may refuse due to\r\nconstraints - but please give me any other options we can suggest here.
\r\n
\r\nHere is my suggestion.
\r\nMaybe we have to use 2 bottles on each line for isolation. eg if\r\nexplosion in dust collector then an isolation bottle 3m from the dust\r\ncollector /approx 1m from the fb drier fires. If an explosion in the\r\nFBD then another isolation bottle 1m from the dust collector inlet\r\nfires - this solution if the client cannot increase the length of the\r\nduct work. Or if there is an explosion in dust collector then we fire\r\nall the bottles we propose in the FBdrier to act as isolation?  I need\r\nyour guidance how we direct this client.
\r\n
\r\nI will also  get the volumes  so we can work out details for\r\nsuppression on drier and dust collector and find out more to the inlet\r\nfeed and outlet of FBD
\r\n
\r\nCompetition is Fike and Kidde  - they are using Fike in New Zealand and\r\nKidde in Perth.
\r\n
\r\nLooking forward to your reply.
\r\n
\r\nRegards
\r\n
\r\nCon Carpis
\r\nBE Chem
\r\nManaging director
\r\n
\r\n*******************************************************************************************************
\r\nCMC Technologies Pty Limited
\r\nUnit 19, 77 Bourke Road
\r\nAlexandria NSW 2015
\r\nAustralia
\r\nABN 47 085 991 224
\r\n
\r\nph +61 2 9669 4000
\r\nfax =61 2 9669 4111
\r\nWeb http://www.cmctechnologies.com.au
\r\n
\r\nThe information in this email and attachments is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised and may be unlawful. Please inform the sender\r\nimmediately if you are not the intended addressee.
\r\n***********************************************************************************************************************************************************************************
\r\n\r\n
From: Richard Ralph [mailto:richard.ralph@au.nufarm.com]
\r\n To: carpis@cmctechnologies.com.au
\r\n Sent: Mon, 29 Jun 2009 19:15:14 +1000
\r\n Subject: Fw: CMC7900WE252068-542OTAHHUH : I & F\r\nGranulation - Explosion Suppression System Budget Price Plus GA drawing
\r\n
\r\n

(See attached file: 2039 Layout 1 (1).PDF)
\r\n
\r\n ----- Forwarded by Richard\r\nRalph/AU/Nufarm on 29/06/2009\r\n05:14 PM -----
\r\n
\r\n \r\n \r\n \r\n \r\n
    \r\n
      \r\n
        \r\n
          \r\n Richard Ralph/AU/Nufarm \r\n

          29/06/2009 05:13 PM

          \r\n
        \r\n
      \r\n
    \r\n
\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n

\r\n
To
\r\n

\r\n carpis@cmctechnologies.com.au

\r\n
cc
\r\n

\r\n

\r\n
Subject
\r\n

\r\n CMC7900WE252068-542OTAHHUH : I & F\r\nGranulation - Explosion Suppression System Budget Price
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n Con,
\r\n
\r\n good morning.
\r\n
\r\n My project in Auckland has had a number of design\r\nchanges since we last spoke. The Fluid bed Drier and it''s associated\r\nDust Collector are now reasonably close together and are now connected\r\nby 3 (three) off 400mm dia ducts. These ducts are L shaped and\r\napproximately 1.5m (horizontal) by 2.5m (vertical).
\r\n
\r\n Can you advise if this is going to be a problem with\r\nregards to protecting both vessels. The design Kst value is 250 Bar.s/m\r\nwhich covers the different products we will process through the fluid\r\nbed drier,
\r\n
\r\n regards,
\r\n
\r\n Richard
\r\n
\r\n
\r\n RICHARD RALPH
\r\n Works Engineer
\r\n Nufarm (Australia) Pty Ltd
\r\n 
\r\n
\r\n
\r\n
\r\n
\r\n

\r\n

\r\n\r\n\r\n\r\n\r\n\r\n\r\n

(See attached file: 2039 Layout 1 (1).PDF)
\r\n
\r\n----- Forwarded by Richard Ralph/AU/Nufarm on 29/06/2009 05:14 PM -----
\r\n
\r\n\r\n\r\n\r\n
\r\n
    \r\n
      \r\n
        \r\n
          Richard Ralph/AU/Nufarm \r\n

          29/06/2009 05:13 PM

        \r\n
      \r\n
    \r\n
\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n

\r\n
To

\r\ncarpis@cmctechnologies.com.au

\r\n
cc

\r\n

\r\n
Subject

\r\nCMC7900WE252068-542OTAHHUH : I & F Granulation - Explosion Suppression System Budget Price
\r\n\r\n\r\n\r\n
\r\n
\r\nCon,
\r\n
\r\ngood morning.
\r\n
\r\nMy project in Auckland has had a number of design changes since we last spoke. The Fluid bed Drier and it''s associated Dust Collector are now reasonably close together and are now connected by 3 (three) off 400mm dia ducts. These ducts are L shaped and approximately 1.5m (horizontal) by 2.5m (vertical).
\r\n
\r\nCan you advise if this is going to be a problem with regards to protecting both vessels. The design Kst value is 250 Bar.s/m which covers the different products we will process through the fluid bed drier,
\r\n
\r\nregards,
\r\n
\r\nRichard
\r\n
\r\n
\r\nRICHARD RALPH
\r\nWorks Engineer
\r\nNufarm (Australia) Pty Ltd
\r\nP 08 9411 4050
\r\nF 08 9411 4068
\r\nM 0419 577 244
\r\ne richard.ralph@au.nufarm.com
\r\n
\r\nNo 1, Mason Road
\r\nKWINANA WA 6167
\r\n
\r\n
\r\n
\r\n
\r\n\r\n

\r\n\r\n\r\n', '', 'Tue, 30 Jun 2009 11:03:16 +1000', '2009-06-30 12:04:18', 66, '[Fwd: [Fwd: CMC7948VE352072-852OTAHHUH : I & F Granulation - Explosion Suppression System - Nufarm now redisigned]]'); -INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES -(28, 'vault@cmctechnologies.com.au ', '', 'karl@cmctechnologies.com.au', '\r\n\r\n\r\n \r\n \r\n\r\n\r\n
\r\n

\r\n\r\n******************************************************************************************************************************************
\r\n CMC Technologies Pty\r\nLimited - ACN: 085 991 224 , ABN: 47 085\r\n991 224
\r\n Engineering & Industrial Instrumentation
\r\n Unit 19, 77 Bourke Road
\r\n Alexandria, NSW, 2015
\r\n AUSTRALIA
\r\n phone: +61 2 9669 4000
\r\n fax    :  +61 2 9669 4111
\r\n web   : http://www.cmctechnologies.com.au
\r\n

Specialising in Fire and\r\nExplosion Prevention or Protection, Overpressure Protection, Vision in the Process,
\r\nFlow Measurement, Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging,\r\nOn-Line Analysers.
\r\n***************************************************************************************************
\r\nThe information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised
\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.

\r\n***********************************************************************************************

\r\n
\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: [Fwd: MC7948VE352072-852OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned]
Date: Tue, 30 Jun 2009 11:01:57 +1000
From: Karl - CMC Technologies <karl@cmctechnologies.com.au>
To: vault@cmctechnologies.com.au
\r\n
\r\n
\r\n\r\n
\r\n
\r\n\r\n******************************************************************************************************************************************
\r\n CMC Technologies Pty\r\nLimited - ACN: 085 991 224 , ABN: 47 085\r\n991 224
\r\n Engineering & Industrial Instrumentation
\r\n Unit 19, 77 Bourke Road
\r\n Alexandria, NSW, 2015
\r\n AUSTRALIA
\r\n phone: +61 2 9669 4000
\r\n fax    :  +61 2 9669 4111
\r\n web   : http://www.cmctechnologies.com.au
\r\n

Specialising in Fire and\r\nExplosion Prevention or Protection, Overpressure Protection, Vision in the Process,
\r\nFlow Measurement, Pressure\r\n- Differential Pressure, and Temperature - Humidity measurement/logging,\r\nOn-Line Analysers.
\r\n***************************************************************************************************
\r\nThe information in this message is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised
\r\nand may be priveledged. Please inform the sender immediately if you are\r\nnot the intended addressee.All correspondence is subject to CMC\r\nTechnologies'' Terms and Conditions of Sale - July 1, 2006.

\r\n***********************************************************************************************

\r\n
\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: CMC7900WE252068-542OTAHHUH : I & F Granulation -\r\nExplosion Suppression System - Nufarm now redisigned
Date: Tue, 30 Jun 2009 00:17:35 +1000
From: Con Carpis - CMC Technologies\r\n <carpis@cmctechnologies.com.au>
To: j.cleijne@atex100.com
CC: j.meistes@atex100.com, f.alfert@atex100.com,\r\n richard@cmctechnologies.com.au
\r\n
\r\n
\r\n\r\n Jan
\r\n
\r\nRemember we worked on this project earlier this year. The engineer in\r\nAustralia - site in Auckland NZ. The client now has the money but has\r\nchanged his process a little and I think its a little tricky- see\r\nattached and below.
\r\n
\r\nI assume we can stil do suppression /isolation for kst 250bar.m/sec.
\r\n
\r\nIt looks like we need suppression in dust collector and FBdrier and\r\nisolation between both - I will try to get more information but im\r\nconcerned about the 4m separation distance between the dust collector\r\nand the drier in the 3 x 400mm ducts . I cannot put a bottle in the\r\nmoddle and make it dual acting due to your guidelines. Im going to\r\nsuggest extension of these duct lengths but client may refuse due to\r\nconstraints - but please give me any other options we can suggest here.
\r\n
\r\nHere is my suggestion.
\r\nMaybe we have to use 2 bottles on each line for isolation. eg if\r\nexplosion in dust collector then an isolation bottle 3m from the dust\r\ncollector /approx 1m from the fb drier fires. If an explosion in the\r\nFBD then another isolation bottle 1m from the dust collector inlet\r\nfires - this solution if the client cannot increase the length of the\r\nduct work. Or if there is an explosion in dust collector then we fire\r\nall the bottles we propose in the FBdrier to act as isolation?  I need\r\nyour guidance how we direct this client.
\r\n
\r\nI will also  get the volumes  so we can work out details for\r\nsuppression on drier and dust collector and find out more to the inlet\r\nfeed and outlet of FBD
\r\n
\r\nCompetition is Fike and Kidde  - they are using Fike in New Zealand and\r\nKidde in Perth.
\r\n
\r\nLooking forward to your reply.
\r\n
\r\nRegards
\r\n
\r\nCon Carpis
\r\nBE Chem
\r\nManaging director
\r\n
\r\n*******************************************************************************************************
\r\nCMC Technologies Pty Limited
\r\nUnit 19, 77 Bourke Road
\r\nAlexandria NSW 2015
\r\nAustralia
\r\nABN 47 085 991 224
\r\n
\r\nph +61 2 9669 4000
\r\nfax =61 2 9669 4111
\r\nWeb http://www.cmctechnologies.com.au
\r\n
\r\nThe information in this email and attachments is confidential and may\r\nbe privileged. If you are not the intended recipient then access,\r\ndisclosure, copying or other dissemination of the contents of this\r\nmessage is unauthorised and may be unlawful. Please inform the sender\r\nimmediately if you are not the intended addressee.
\r\n***********************************************************************************************************************************************************************************
\r\n\r\n
From: Richard Ralph [mailto:richard.ralph@au.nufarm.com]
\r\n To: carpis@cmctechnologies.com.au
\r\n Sent: Mon, 29 Jun 2009 19:15:14 +1000
\r\n Subject: Fw: CMC7900WE252068-542OTAHHUH : I & F\r\nGranulation - Explosion Suppression System Budget Price Plus GA drawing
\r\n
\r\n

(See attached file: 2039 Layout 1 (1).PDF)
\r\n
\r\n ----- Forwarded by Richard\r\nRalph/AU/Nufarm on 29/06/2009\r\n05:14 PM -----
\r\n
\r\n \r\n \r\n \r\n \r\n
    \r\n
      \r\n
        \r\n
          \r\n Richard Ralph/AU/Nufarm \r\n

          29/06/2009 05:13 PM

          \r\n
        \r\n
      \r\n
    \r\n
\r\n \r\n
\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n

\r\n
To
\r\n

\r\n carpis@cmctechnologies.com.au

\r\n
cc
\r\n

\r\n

\r\n
Subject
\r\n

\r\n CMC7900WE252068-542OTAHHUH : I & F\r\nGranulation - Explosion Suppression System Budget Price
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n Con,
\r\n
\r\n good morning.
\r\n
\r\n My project in Auckland has had a number of design\r\nchanges since we last spoke. The Fluid bed Drier and it''s associated\r\nDust Collector are now reasonably close together and are now connected\r\nby 3 (three) off 400mm dia ducts. These ducts are L shaped and\r\napproximately 1.5m (horizontal) by 2.5m (vertical).
\r\n
\r\n Can you advise if this is going to be a problem with\r\nregards to protecting both vessels. The design Kst value is 250 Bar.s/m\r\nwhich covers the different products we will process through the fluid\r\nbed drier,
\r\n
\r\n regards,
\r\n
\r\n Richard
\r\n
\r\n
\r\n RICHARD RALPH
\r\n Works Engineer
\r\n Nufarm (Australia) Pty Ltd
\r\n 
\r\n
\r\n
\r\n
\r\n
\r\n

\r\n

\r\n\r\n\r\n\r\n\r\n\r\n\r\n

(See attached file: 2039 Layout 1 (1).PDF)
\r\n
\r\n----- Forwarded by Richard Ralph/AU/Nufarm on 29/06/2009 05:14 PM -----
\r\n
\r\n\r\n\r\n\r\n
\r\n
    \r\n
      \r\n
        \r\n
          Richard Ralph/AU/Nufarm \r\n

          29/06/2009 05:13 PM

        \r\n
      \r\n
    \r\n
\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n

\r\n
To

\r\ncarpis@cmctechnologies.com.au

\r\n
cc

\r\n

\r\n
Subject

\r\nCMC7900WE252068-542OTAHHUH : I & F Granulation - Explosion Suppression System Budget Price
\r\n\r\n\r\n\r\n
\r\n
\r\nCon,
\r\n
\r\ngood morning.
\r\n
\r\nMy project in Auckland has had a number of design changes since we last spoke. The Fluid bed Drier and it''s associated Dust Collector are now reasonably close together and are now connected by 3 (three) off 400mm dia ducts. These ducts are L shaped and approximately 1.5m (horizontal) by 2.5m (vertical).
\r\n
\r\nCan you advise if this is going to be a problem with regards to protecting both vessels. The design Kst value is 250 Bar.s/m which covers the different products we will process through the fluid bed drier,
\r\n
\r\nregards,
\r\n
\r\nRichard
\r\n
\r\n
\r\nRICHARD RALPH
\r\nWorks Engineer
\r\nNufarm (Australia) Pty Ltd
\r\nP 08 9411 4050
\r\nF 08 9411 4068
\r\nM 0419 577 244
\r\ne richard.ralph@au.nufarm.com
\r\n
\r\nNo 1, Mason Road
\r\nKWINANA WA 6167
\r\n
\r\n
\r\n
\r\n
\r\n\r\n

\r\n\r\n\r\n', '', 'Tue, 30 Jun 2009 11:03:16 +1000', '2009-06-30 12:13:46', 66, '[Fwd: [Fwd: CMC7948VE352072-852OTAHHUH : I & F Granulation - Explosion Suppression System - Nufarm now redisigned]]'); -INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES -(29, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '\r\n\r\n\r\n \r\n \r\n \r\n FEN - Australia''s premier manufacturing news website\r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: My FEN - Photochemical milling from Mastercut Technologies
Date: 1 Jul 2009 10:51:38 +1000
From: My FEN <donotreply@myfen.com.au>
To: NULL <sales@cmctechnologies.com.au>
\r\n
\r\n
\r\n\r\n\r\n\r\nFEN - Australia''s premier manufacturing news website\r\n\r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
         
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n

\r\n

\r\n

\r\n
\r\n
\r\n
\r\n
\r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
Issue\r\n01-07-2009\r\n

News

\r\n

\r\n

Dali Thermal Imagers for Emona
\r\n Emona\r\nInstruments signed agreement to distribute Dali products in Australia.[more]

\r\n

Featured Articles

\r\n

\r\n

Photochemical milling from Mastercut Technologies\r\n
\r\n The\r\ncompany offers a breakdown of the ''less well-known'' step in the cutting\r\nprocess. [more]

\r\n

Products

\r\n

\r\n

Bürkert Type 8750 Flow Controller
\r\n A\r\nmore precise method to calculate and control flow rates.[more]

\r\n

Larzep air over hydraulic pumps
\r\n Air\r\nover hydraulic pump covers single- and double-acting applications.[more]

\r\n

Sprayflo range of air nozzles
\r\n Compact\r\nair nozzles are resistant to shock, heat, and chemicals.[more]

\r\n

Conquest scroll air compressor
\r\n Air\r\ncompressors operate without the use of oil during compression process.[more]

\r\n

Branach Step Platform
\r\n Non-slip\r\nladders are lightweight and easy to move.[more]

\r\n

Pilz PSS4000 automation system
\r\n Automate\r\nmachine control and safety.[more]

\r\n

Rockwell Automation releases DataSite RTU
\r\n Low-power\r\nremote terminal unit has solar-powered option. [more]

\r\n

Multivac H 100 robotic handling module
\r\n Precision\r\nrobotics in packaging machinery.[more]

\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Manufacturing Group | Contact\r\nUs | Media Kit\r\n| please\r\nunsubscribe me
Copyright Reed\r\nBusiness Information.
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
You have\r\nreceived this email because you are important to myfen.com.au.\r\nFor further details regarding the myfen.com.au privacy policy please\r\nvisit www.reedbusiness.com.au/privacy.asp
\r\n
 
\r\n
 
\r\n
\r\n\r\n\r\n\r\n', '', 'Wed, 01 Jul 2009 12:31:12 +1000', '2009-07-01 12:31:50', 66, 'CMC7948VE352072-852 TEST TERST'); -INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES -(30, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '\r\n\r\n\r\n \r\n \r\n \r\n FEN - Australia''s premier manufacturing news website\r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: My FEN - Photochemical milling from Mastercut Technologies
Date: 1 Jul 2009 10:51:38 +1000
From: My FEN <donotreply@myfen.com.au>
To: NULL <sales@cmctechnologies.com.au>
\r\n
\r\n
\r\n\r\n\r\n\r\nFEN - Australia''s premier manufacturing news website\r\n\r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
         
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n

\r\n

\r\n

\r\n
\r\n
\r\n
\r\n
\r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
Issue\r\n01-07-2009\r\n

News

\r\n

\r\n

Dali Thermal Imagers for Emona
\r\n Emona\r\nInstruments signed agreement to distribute Dali products in Australia.[more]

\r\n

Featured Articles

\r\n

\r\n

Photochemical milling from Mastercut Technologies\r\n
\r\n The\r\ncompany offers a breakdown of the ''less well-known'' step in the cutting\r\nprocess. [more]

\r\n

Products

\r\n

\r\n

Bürkert Type 8750 Flow Controller
\r\n A\r\nmore precise method to calculate and control flow rates.[more]

\r\n

Larzep air over hydraulic pumps
\r\n Air\r\nover hydraulic pump covers single- and double-acting applications.[more]

\r\n

Sprayflo range of air nozzles
\r\n Compact\r\nair nozzles are resistant to shock, heat, and chemicals.[more]

\r\n

Conquest scroll air compressor
\r\n Air\r\ncompressors operate without the use of oil during compression process.[more]

\r\n

Branach Step Platform
\r\n Non-slip\r\nladders are lightweight and easy to move.[more]

\r\n

Pilz PSS4000 automation system
\r\n Automate\r\nmachine control and safety.[more]

\r\n

Rockwell Automation releases DataSite RTU
\r\n Low-power\r\nremote terminal unit has solar-powered option. [more]

\r\n

Multivac H 100 robotic handling module
\r\n Precision\r\nrobotics in packaging machinery.[more]

\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Manufacturing Group | Contact\r\nUs | Media Kit\r\n| please\r\nunsubscribe me
Copyright Reed\r\nBusiness Information.
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
You have\r\nreceived this email because you are important to myfen.com.au.\r\nFor further details regarding the myfen.com.au privacy policy please\r\nvisit www.reedbusiness.com.au/privacy.asp
\r\n
 
\r\n
 
\r\n
\r\n\r\n\r\n\r\n', '', 'Wed, 01 Jul 2009 12:31:12 +1000', '2009-07-01 12:32:05', 66, 'CMC7948VE352072-852 TEST TERST'); -INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES -(31, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '\r\n\r\n\r\n \r\n \r\n \r\n FEN - Australia''s premier manufacturing news website\r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: My FEN - Photochemical milling from Mastercut Technologies
Date: 1 Jul 2009 10:51:38 +1000
From: My FEN <donotreply@myfen.com.au>
To: NULL <sales@cmctechnologies.com.au>
\r\n
\r\n
\r\n\r\n\r\n\r\nFEN - Australia''s premier manufacturing news website\r\n\r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
         
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n

\r\n

\r\n

\r\n
\r\n
\r\n
\r\n
\r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
Issue\r\n01-07-2009\r\n

News

\r\n

\r\n

Dali Thermal Imagers for Emona
\r\n Emona\r\nInstruments signed agreement to distribute Dali products in Australia.[more]

\r\n

Featured Articles

\r\n

\r\n

Photochemical milling from Mastercut Technologies\r\n
\r\n The\r\ncompany offers a breakdown of the ''less well-known'' step in the cutting\r\nprocess. [more]

\r\n

Products

\r\n

\r\n

Bürkert Type 8750 Flow Controller
\r\n A\r\nmore precise method to calculate and control flow rates.[more]

\r\n

Larzep air over hydraulic pumps
\r\n Air\r\nover hydraulic pump covers single- and double-acting applications.[more]

\r\n

Sprayflo range of air nozzles
\r\n Compact\r\nair nozzles are resistant to shock, heat, and chemicals.[more]

\r\n

Conquest scroll air compressor
\r\n Air\r\ncompressors operate without the use of oil during compression process.[more]

\r\n

Branach Step Platform
\r\n Non-slip\r\nladders are lightweight and easy to move.[more]

\r\n

Pilz PSS4000 automation system
\r\n Automate\r\nmachine control and safety.[more]

\r\n

Rockwell Automation releases DataSite RTU
\r\n Low-power\r\nremote terminal unit has solar-powered option. [more]

\r\n

Multivac H 100 robotic handling module
\r\n Precision\r\nrobotics in packaging machinery.[more]

\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Manufacturing Group | Contact\r\nUs | Media Kit\r\n| please\r\nunsubscribe me
Copyright Reed\r\nBusiness Information.
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
You have\r\nreceived this email because you are important to myfen.com.au.\r\nFor further details regarding the myfen.com.au privacy policy please\r\nvisit www.reedbusiness.com.au/privacy.asp
\r\n
 
\r\n
 
\r\n
\r\n\r\n\r\n\r\n', '', 'Wed, 01 Jul 2009 12:31:12 +1000', '2009-07-01 12:41:59', 66, 'CMC7948VE352072-852 TEST TERST'); -INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES -(32, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '\r\n\r\n\r\n \r\n \r\n \r\n FEN - Australia''s premier manufacturing news website\r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: My FEN - Photochemical milling from Mastercut Technologies
Date: 1 Jul 2009 10:51:38 +1000
From: My FEN <donotreply@myfen.com.au>
To: NULL <sales@cmctechnologies.com.au>
\r\n
\r\n
\r\n\r\n\r\n\r\nFEN - Australia''s premier manufacturing news website\r\n\r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
         
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n

\r\n

\r\n

\r\n
\r\n
\r\n
\r\n
\r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
Issue\r\n01-07-2009\r\n

News

\r\n

\r\n

Dali Thermal Imagers for Emona
\r\n Emona\r\nInstruments signed agreement to distribute Dali products in Australia.[more]

\r\n

Featured Articles

\r\n

\r\n

Photochemical milling from Mastercut Technologies\r\n
\r\n The\r\ncompany offers a breakdown of the ''less well-known'' step in the cutting\r\nprocess. [more]

\r\n

Products

\r\n

\r\n

Bürkert Type 8750 Flow Controller
\r\n A\r\nmore precise method to calculate and control flow rates.[more]

\r\n

Larzep air over hydraulic pumps
\r\n Air\r\nover hydraulic pump covers single- and double-acting applications.[more]

\r\n

Sprayflo range of air nozzles
\r\n Compact\r\nair nozzles are resistant to shock, heat, and chemicals.[more]

\r\n

Conquest scroll air compressor
\r\n Air\r\ncompressors operate without the use of oil during compression process.[more]

\r\n

Branach Step Platform
\r\n Non-slip\r\nladders are lightweight and easy to move.[more]

\r\n

Pilz PSS4000 automation system
\r\n Automate\r\nmachine control and safety.[more]

\r\n

Rockwell Automation releases DataSite RTU
\r\n Low-power\r\nremote terminal unit has solar-powered option. [more]

\r\n

Multivac H 100 robotic handling module
\r\n Precision\r\nrobotics in packaging machinery.[more]

\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Manufacturing Group | Contact\r\nUs | Media Kit\r\n| please\r\nunsubscribe me
Copyright Reed\r\nBusiness Information.
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
You have\r\nreceived this email because you are important to myfen.com.au.\r\nFor further details regarding the myfen.com.au privacy policy please\r\nvisit www.reedbusiness.com.au/privacy.asp
\r\n
 
\r\n
 
\r\n
\r\n\r\n\r\n\r\n', '', 'Wed, 01 Jul 2009 12:31:12 +1000', '2009-07-01 12:42:40', 66, 'CMC7948VE352072-852 TEST TERST'); -INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES -(33, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '\r\n\r\n\r\n \r\n \r\n \r\n FEN - Australia''s premier manufacturing news website\r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: My FEN - Photochemical milling from Mastercut Technologies
Date: 1 Jul 2009 10:51:38 +1000
From: My FEN <donotreply@myfen.com.au>
To: NULL <sales@cmctechnologies.com.au>
\r\n
\r\n
\r\n\r\n\r\n\r\nFEN - Australia''s premier manufacturing news website\r\n\r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
         
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n

\r\n

\r\n

\r\n
\r\n
\r\n
\r\n
\r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
Issue\r\n01-07-2009\r\n

News

\r\n

\r\n

Dali Thermal Imagers for Emona
\r\n Emona\r\nInstruments signed agreement to distribute Dali products in Australia.[more]

\r\n

Featured Articles

\r\n

\r\n

Photochemical milling from Mastercut Technologies\r\n
\r\n The\r\ncompany offers a breakdown of the ''less well-known'' step in the cutting\r\nprocess. [more]

\r\n

Products

\r\n

\r\n

Bürkert Type 8750 Flow Controller
\r\n A\r\nmore precise method to calculate and control flow rates.[more]

\r\n

Larzep air over hydraulic pumps
\r\n Air\r\nover hydraulic pump covers single- and double-acting applications.[more]

\r\n

Sprayflo range of air nozzles
\r\n Compact\r\nair nozzles are resistant to shock, heat, and chemicals.[more]

\r\n

Conquest scroll air compressor
\r\n Air\r\ncompressors operate without the use of oil during compression process.[more]

\r\n

Branach Step Platform
\r\n Non-slip\r\nladders are lightweight and easy to move.[more]

\r\n

Pilz PSS4000 automation system
\r\n Automate\r\nmachine control and safety.[more]

\r\n

Rockwell Automation releases DataSite RTU
\r\n Low-power\r\nremote terminal unit has solar-powered option. [more]

\r\n

Multivac H 100 robotic handling module
\r\n Precision\r\nrobotics in packaging machinery.[more]

\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Manufacturing Group | Contact\r\nUs | Media Kit\r\n| please\r\nunsubscribe me
Copyright Reed\r\nBusiness Information.
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
You have\r\nreceived this email because you are important to myfen.com.au.\r\nFor further details regarding the myfen.com.au privacy policy please\r\nvisit www.reedbusiness.com.au/privacy.asp
\r\n
 
\r\n
 
\r\n
\r\n\r\n\r\n\r\n', '', 'Wed, 01 Jul 2009 12:31:12 +1000', '2009-07-01 12:43:32', 66, 'CMC7948VE352072-852 TEST TERST'); -INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES -(34, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '\r\n\r\n\r\n \r\n \r\n \r\n FEN - Australia''s premier manufacturing news website\r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: My FEN - Photochemical milling from Mastercut Technologies
Date: 1 Jul 2009 10:51:38 +1000
From: My FEN <donotreply@myfen.com.au>
To: NULL <sales@cmctechnologies.com.au>
\r\n
\r\n
\r\n\r\n\r\n\r\nFEN - Australia''s premier manufacturing news website\r\n\r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
         
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n

\r\n

\r\n

\r\n
\r\n
\r\n
\r\n
\r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
Issue\r\n01-07-2009\r\n

News

\r\n

\r\n

Dali Thermal Imagers for Emona
\r\n Emona\r\nInstruments signed agreement to distribute Dali products in Australia.[more]

\r\n

Featured Articles

\r\n

\r\n

Photochemical milling from Mastercut Technologies\r\n
\r\n The\r\ncompany offers a breakdown of the ''less well-known'' step in the cutting\r\nprocess. [more]

\r\n

Products

\r\n

\r\n

Bürkert Type 8750 Flow Controller
\r\n A\r\nmore precise method to calculate and control flow rates.[more]

\r\n

Larzep air over hydraulic pumps
\r\n Air\r\nover hydraulic pump covers single- and double-acting applications.[more]

\r\n

Sprayflo range of air nozzles
\r\n Compact\r\nair nozzles are resistant to shock, heat, and chemicals.[more]

\r\n

Conquest scroll air compressor
\r\n Air\r\ncompressors operate without the use of oil during compression process.[more]

\r\n

Branach Step Platform
\r\n Non-slip\r\nladders are lightweight and easy to move.[more]

\r\n

Pilz PSS4000 automation system
\r\n Automate\r\nmachine control and safety.[more]

\r\n

Rockwell Automation releases DataSite RTU
\r\n Low-power\r\nremote terminal unit has solar-powered option. [more]

\r\n

Multivac H 100 robotic handling module
\r\n Precision\r\nrobotics in packaging machinery.[more]

\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Manufacturing Group | Contact\r\nUs | Media Kit\r\n| please\r\nunsubscribe me
Copyright Reed\r\nBusiness Information.
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
You have\r\nreceived this email because you are important to myfen.com.au.\r\nFor further details regarding the myfen.com.au privacy policy please\r\nvisit www.reedbusiness.com.au/privacy.asp
\r\n
 
\r\n
 
\r\n
\r\n\r\n\r\n\r\n', '', 'Wed, 01 Jul 2009 12:31:12 +1000', '2009-07-01 12:44:13', 66, 'CMC7948VE352072-852 TEST TERST'); -INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES -(35, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '\r\n\r\n\r\n \r\n \r\n \r\n FEN - Australia''s premier manufacturing news website\r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: My FEN - Photochemical milling from Mastercut Technologies
Date: 1 Jul 2009 10:51:38 +1000
From: My FEN <donotreply@myfen.com.au>
To: NULL <sales@cmctechnologies.com.au>
\r\n
\r\n
\r\n\r\n\r\n\r\nFEN - Australia''s premier manufacturing news website\r\n\r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
         
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n

\r\n

\r\n

\r\n
\r\n
\r\n
\r\n
\r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
Issue\r\n01-07-2009\r\n

News

\r\n

\r\n

Dali Thermal Imagers for Emona
\r\n Emona\r\nInstruments signed agreement to distribute Dali products in Australia.[more]

\r\n

Featured Articles

\r\n

\r\n

Photochemical milling from Mastercut Technologies\r\n
\r\n The\r\ncompany offers a breakdown of the ''less well-known'' step in the cutting\r\nprocess. [more]

\r\n

Products

\r\n

\r\n

Bürkert Type 8750 Flow Controller
\r\n A\r\nmore precise method to calculate and control flow rates.[more]

\r\n

Larzep air over hydraulic pumps
\r\n Air\r\nover hydraulic pump covers single- and double-acting applications.[more]

\r\n

Sprayflo range of air nozzles
\r\n Compact\r\nair nozzles are resistant to shock, heat, and chemicals.[more]

\r\n

Conquest scroll air compressor
\r\n Air\r\ncompressors operate without the use of oil during compression process.[more]

\r\n

Branach Step Platform
\r\n Non-slip\r\nladders are lightweight and easy to move.[more]

\r\n

Pilz PSS4000 automation system
\r\n Automate\r\nmachine control and safety.[more]

\r\n

Rockwell Automation releases DataSite RTU
\r\n Low-power\r\nremote terminal unit has solar-powered option. [more]

\r\n

Multivac H 100 robotic handling module
\r\n Precision\r\nrobotics in packaging machinery.[more]

\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Manufacturing Group | Contact\r\nUs | Media Kit\r\n| please\r\nunsubscribe me
Copyright Reed\r\nBusiness Information.
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
You have\r\nreceived this email because you are important to myfen.com.au.\r\nFor further details regarding the myfen.com.au privacy policy please\r\nvisit www.reedbusiness.com.au/privacy.asp
\r\n
 
\r\n
 
\r\n
\r\n\r\n\r\n\r\n', '', 'Wed, 01 Jul 2009 12:31:12 +1000', '2009-07-01 12:46:06', 66, 'CMC7948VE352072-852 TEST TERST'); -INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES -(36, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '\r\n\r\n\r\n \r\n \r\n \r\n FEN - Australia''s premier manufacturing news website\r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: My FEN - Photochemical milling from Mastercut Technologies
Date: 1 Jul 2009 10:51:38 +1000
From: My FEN <donotreply@myfen.com.au>
To: NULL <sales@cmctechnologies.com.au>
\r\n
\r\n
\r\n\r\n\r\n\r\nFEN - Australia''s premier manufacturing news website\r\n\r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
         
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n

\r\n

\r\n

\r\n
\r\n
\r\n
\r\n
\r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
Issue\r\n01-07-2009\r\n

News

\r\n

\r\n

Dali Thermal Imagers for Emona
\r\n Emona\r\nInstruments signed agreement to distribute Dali products in Australia.[more]

\r\n

Featured Articles

\r\n

\r\n

Photochemical milling from Mastercut Technologies\r\n
\r\n The\r\ncompany offers a breakdown of the ''less well-known'' step in the cutting\r\nprocess. [more]

\r\n

Products

\r\n

\r\n

Bürkert Type 8750 Flow Controller
\r\n A\r\nmore precise method to calculate and control flow rates.[more]

\r\n

Larzep air over hydraulic pumps
\r\n Air\r\nover hydraulic pump covers single- and double-acting applications.[more]

\r\n

Sprayflo range of air nozzles
\r\n Compact\r\nair nozzles are resistant to shock, heat, and chemicals.[more]

\r\n

Conquest scroll air compressor
\r\n Air\r\ncompressors operate without the use of oil during compression process.[more]

\r\n

Branach Step Platform
\r\n Non-slip\r\nladders are lightweight and easy to move.[more]

\r\n

Pilz PSS4000 automation system
\r\n Automate\r\nmachine control and safety.[more]

\r\n

Rockwell Automation releases DataSite RTU
\r\n Low-power\r\nremote terminal unit has solar-powered option. [more]

\r\n

Multivac H 100 robotic handling module
\r\n Precision\r\nrobotics in packaging machinery.[more]

\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Manufacturing Group | Contact\r\nUs | Media Kit\r\n| please\r\nunsubscribe me
Copyright Reed\r\nBusiness Information.
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
You have\r\nreceived this email because you are important to myfen.com.au.\r\nFor further details regarding the myfen.com.au privacy policy please\r\nvisit www.reedbusiness.com.au/privacy.asp
\r\n
 
\r\n
 
\r\n
\r\n\r\n\r\n\r\n', '', 'Wed, 01 Jul 2009 12:31:12 +1000', '2009-07-01 12:47:29', 66, 'CMC7948VE352072-852 TEST TERST'); -INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES -(37, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '\r\n\r\n\r\n \r\n \r\n \r\n FEN - Australia''s premier manufacturing news website\r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: My FEN - Photochemical milling from Mastercut Technologies
Date: 1 Jul 2009 10:51:38 +1000
From: My FEN <donotreply@myfen.com.au>
To: NULL <sales@cmctechnologies.com.au>
\r\n
\r\n
\r\n\r\n\r\n\r\nFEN - Australia''s premier manufacturing news website\r\n\r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
         
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n

\r\n

\r\n

\r\n
\r\n
\r\n
\r\n
\r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
Issue\r\n01-07-2009\r\n

News

\r\n

\r\n

Dali Thermal Imagers for Emona
\r\n Emona\r\nInstruments signed agreement to distribute Dali products in Australia.[more]

\r\n

Featured Articles

\r\n

\r\n

Photochemical milling from Mastercut Technologies\r\n
\r\n The\r\ncompany offers a breakdown of the ''less well-known'' step in the cutting\r\nprocess. [more]

\r\n

Products

\r\n

\r\n

Bürkert Type 8750 Flow Controller
\r\n A\r\nmore precise method to calculate and control flow rates.[more]

\r\n

Larzep air over hydraulic pumps
\r\n Air\r\nover hydraulic pump covers single- and double-acting applications.[more]

\r\n

Sprayflo range of air nozzles
\r\n Compact\r\nair nozzles are resistant to shock, heat, and chemicals.[more]

\r\n

Conquest scroll air compressor
\r\n Air\r\ncompressors operate without the use of oil during compression process.[more]

\r\n

Branach Step Platform
\r\n Non-slip\r\nladders are lightweight and easy to move.[more]

\r\n

Pilz PSS4000 automation system
\r\n Automate\r\nmachine control and safety.[more]

\r\n

Rockwell Automation releases DataSite RTU
\r\n Low-power\r\nremote terminal unit has solar-powered option. [more]

\r\n

Multivac H 100 robotic handling module
\r\n Precision\r\nrobotics in packaging machinery.[more]

\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Manufacturing Group | Contact\r\nUs | Media Kit\r\n| please\r\nunsubscribe me
Copyright Reed\r\nBusiness Information.
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
You have\r\nreceived this email because you are important to myfen.com.au.\r\nFor further details regarding the myfen.com.au privacy policy please\r\nvisit www.reedbusiness.com.au/privacy.asp
\r\n
 
\r\n
 
\r\n
\r\n\r\n\r\n\r\n', '', 'Wed, 01 Jul 2009 12:31:12 +1000', '2009-07-01 12:48:56', 66, 'CMC7948VE352072-852 TEST TERST'); -INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES -(38, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '\r\n\r\n\r\n \r\n \r\n \r\n FEN - Australia''s premier manufacturing news website\r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: My FEN - Photochemical milling from Mastercut Technologies
Date: 1 Jul 2009 10:51:38 +1000
From: My FEN <donotreply@myfen.com.au>
To: NULL <sales@cmctechnologies.com.au>
\r\n
\r\n
\r\n\r\n\r\n\r\nFEN - Australia''s premier manufacturing news website\r\n\r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
         
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n

\r\n

\r\n

\r\n
\r\n
\r\n
\r\n
\r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
Issue\r\n01-07-2009\r\n

News

\r\n

\r\n

Dali Thermal Imagers for Emona
\r\n Emona\r\nInstruments signed agreement to distribute Dali products in Australia.[more]

\r\n

Featured Articles

\r\n

\r\n

Photochemical milling from Mastercut Technologies\r\n
\r\n The\r\ncompany offers a breakdown of the ''less well-known'' step in the cutting\r\nprocess. [more]

\r\n

Products

\r\n

\r\n

Bürkert Type 8750 Flow Controller
\r\n A\r\nmore precise method to calculate and control flow rates.[more]

\r\n

Larzep air over hydraulic pumps
\r\n Air\r\nover hydraulic pump covers single- and double-acting applications.[more]

\r\n

Sprayflo range of air nozzles
\r\n Compact\r\nair nozzles are resistant to shock, heat, and chemicals.[more]

\r\n

Conquest scroll air compressor
\r\n Air\r\ncompressors operate without the use of oil during compression process.[more]

\r\n

Branach Step Platform
\r\n Non-slip\r\nladders are lightweight and easy to move.[more]

\r\n

Pilz PSS4000 automation system
\r\n Automate\r\nmachine control and safety.[more]

\r\n

Rockwell Automation releases DataSite RTU
\r\n Low-power\r\nremote terminal unit has solar-powered option. [more]

\r\n

Multivac H 100 robotic handling module
\r\n Precision\r\nrobotics in packaging machinery.[more]

\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Manufacturing Group | Contact\r\nUs | Media Kit\r\n| please\r\nunsubscribe me
Copyright Reed\r\nBusiness Information.
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
You have\r\nreceived this email because you are important to myfen.com.au.\r\nFor further details regarding the myfen.com.au privacy policy please\r\nvisit www.reedbusiness.com.au/privacy.asp
\r\n
 
\r\n
 
\r\n
\r\n\r\n\r\n\r\n', '', 'Wed, 01 Jul 2009 12:31:12 +1000', '2009-07-01 12:50:03', 66, 'CMC7948VE352072-852 TEST TERST'); -INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES -(39, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '\r\n\r\n\r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: Dick Smith - Red Hot Deals from the Techxperts
Date: Wed, 01 Jul 2009 12:44:09 +1000
From: Dick Smith <feedback@dse.com.au>
To: <mcarpis@cmctechnologies.com.au>
\r\n
\r\n
\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
If you cannot\r\nview the email below, please view online
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Store Locator
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Visit our website |\r\n Contact us\r\n| Update\r\nprofile | Subscribe\r\n| Send to friend

\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n

\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n

\r\n
\r\n
\r\n

\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

\r\n
\r\n
\r\n
\r\n
\r\n
 
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n
\r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n

Dear Maria\r\nCarpis,
\r\n
\r\n
Are you\r\nafter some Red Hot Deals from Dick Smith? Well it''s your lucky day.\r\nWe''ve got Red Hot Deals, and some Techxpert info on the new Nikon\r\nCameras, plus we''re giving away 7 of them!
\r\n
\r\nNeed Techxpert help in your home? Check out our Mobile Techxpert\r\nServices!

\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n

\r\n
- Red Hot Deals
\r\n- Most Popular Products
\r\n - Win 1 of 7 Nikon Cameras

\r\n - Techxpert Tips: Nikon Cameras
\r\n - Need help from the Techxperts?

\r\n
 
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
 
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n  Red\r\nHot\r\nDeals
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n
  
\r\n
Wii Console and Wii Fit Package
\r\n $533.00 if items\r\npurchased individually!
\r\n
$449
\r\n

\r\n
Palm Treo 500 Smartphone
\r\nSave $300.00
\r\n
$197
\r\n

\r\n
 NAVMAN S45 In-Car Navigator
\r\n
Save $50.00
\r\n $247
\r\n

\r\n
\r\n
\r\n
\r\n \r\n
  
\r\n
 XH1770
\r\n
Microsoft Office Home\r\nand Student 2007 with Outlook 2007
\r\n
$246.00\r\nif items purchased individually!
\r\n $196
\r\n
\r\n
 DGTEC Freeview HD STB DGFV7200
\r\n
Save $40.00
\r\n $189

\r\n
\r\n
WD Elements 1TB\r\nDesktop External Hard Drive  
\r\n
Save $30.00
\r\n $169
\r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n

 
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n  Most\r\nPopular Products
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n
  
\r\n
Toshiba Satellite L300/0VK Notebook
\r\nOnly $698 after $150 cashback via\r\nredemption
\r\n
$848
\r\n

\r\n
LOGITECH Wireless Desktop Wave Keyboard
\r\nNormally $116.00
\r\n
$99
\r\n

\r\n
 DSE 7inch Portable DVD Player
\r\n
Exclusive!
\r\n$99

\r\n

\r\n
\r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n
 
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n  Win\r\n1 of 7 Nikon Digital Cameras
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Fresh to Dick Smith are 3 of the hottest\r\nnew cameras from Nikon.
\r\n
\r\nWe’re giving away 1 x DSLR D5000, 1 x COOLPIX P90 and 5 x COOLPIX 230S\r\nCameras.The total prize pool is worth over $4000! For info on these new\r\ncameras, and to enter the competition, click through here.

\r\n
\r\n

\r\n

\r\n
 
\r\n
\r\n
\r\n
\r\n
\r\n
 
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n  Techxpert\r\nTips – Nikons 3 Hottest\r\nNew Cameras
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n

\r\n
\r\n
\r\n

Check out 3 of\r\nthe hottest new cameras from Nikon. The D5000 and COOLPIX P90 offer\r\nsuperior creative control when composing your shots while the COOLPIX\r\nS230 is an awesome everyday camera for capturing those spontaneous\r\nmoments in life. Have a look at some of the\r\nfeatures of these fantastic new cameras from Nikon.
\r\n

\r\n
Learn More\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
 
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n   Need Help From The Techxperts?\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n
\r\n \r\n \r\n
\r\n
\r\n At Dick Smith, we provide a number of\r\nadditional services designed to make your life easier:

\r\n
\r\n
Mobile TechxpertsMobile\r\nTechxpert Services* - We can save you the hassle!
\r\n
Our\r\nteam of mobile Techxperts will come to you for all your home\r\nentertainment and computing needs.
\r\n
\r\nWe can setup your home computer (PC or MAC), get it online, connect and\r\nconfigure a wireless network, update your software, fix things for\r\nyou when they go wrong, train you so you get the most out of your\r\ncomputer, and more! And that''s just for computers!
\r\n
\r\nSome of our home entertainment services include (and are not limited\r\nto), delivering your new TV or home theatre system,\r\nconnecting everything so it works together, setting up a universal\r\nremote, getting your gaming consoles on the Internet, configuring and\r\ncreating a custom setup - or just teaching you how to use everything! 
\r\n
\r\n
\r\nNeed our help?\r\nCall 1300 880 646 and book your Mobile Techxpert today! 
\r\n
\r\n*Only available in Capital Cities and Surrounds (NSW, VIC, QLD, ACT,\r\nWA, SA and NT)

\r\n \r\n

\r\n
\r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n
 
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n Follow us on Twitter
\r\nFollow us on Twitter...
\r\n http://twitter.com/dicksmith\r\n
\r\n \r\n
\r\n
\r\n
\r\n
 
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n  \r\n \r\n \r\n Dick Smith\r\n \r\n
Dick\r\nSmith \r\n- Talk to the Techxperts
\r\n Head Office Address
\r\nPO Box 500
\r\nRegents Park DC NSW 2143 Australia
\r\nTelephone: (02) 9642-9100
\r\n
\r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Privacy Policy\r\n| Visit our website\r\n| Contact us\r\n| Unsubscribe | Send to friend
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n
\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

\r\n
\r\nThis email was sent by The Web Team, Dick Smith, 2 Davidson\r\nSt, Chullora NSW, 2190 to mcarpis@cmctechnologies.com.au
\r\n

\r\n Unsubscribe

\r\n
\r\n
\r\n
\r\n\r\n\r\n\r\n', '', 'Wed, 01 Jul 2009 12:49:21 +1000', '2009-07-01 12:50:03', 57, '[Fwd: Dick Smith - Red Hot Deals from the Techxperts] CMC7939NE372088-247'); -INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES -(40, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '\r\n\r\n\r\n \r\n \r\n \r\n FEN - Australia''s premier manufacturing news website\r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: My FEN - Photochemical milling from Mastercut Technologies
Date: 1 Jul 2009 10:51:38 +1000
From: My FEN <donotreply@myfen.com.au>
To: NULL <sales@cmctechnologies.com.au>
\r\n
\r\n
\r\n\r\n\r\n\r\nFEN - Australia''s premier manufacturing news website\r\n\r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
         
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n
\r\n

\r\n

\r\n

\r\n

\r\n
\r\n
\r\n
\r\n
\r\n
 \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
Issue\r\n01-07-2009\r\n

News

\r\n

\r\n

Dali Thermal Imagers for Emona
\r\n Emona\r\nInstruments signed agreement to distribute Dali products in Australia.[more]

\r\n

Featured Articles

\r\n

\r\n

Photochemical milling from Mastercut Technologies\r\n
\r\n The\r\ncompany offers a breakdown of the ''less well-known'' step in the cutting\r\nprocess. [more]

\r\n

Products

\r\n

\r\n

Bürkert Type 8750 Flow Controller
\r\n A\r\nmore precise method to calculate and control flow rates.[more]

\r\n

Larzep air over hydraulic pumps
\r\n Air\r\nover hydraulic pump covers single- and double-acting applications.[more]

\r\n

Sprayflo range of air nozzles
\r\n Compact\r\nair nozzles are resistant to shock, heat, and chemicals.[more]

\r\n

Conquest scroll air compressor
\r\n Air\r\ncompressors operate without the use of oil during compression process.[more]

\r\n

Branach Step Platform
\r\n Non-slip\r\nladders are lightweight and easy to move.[more]

\r\n

Pilz PSS4000 automation system
\r\n Automate\r\nmachine control and safety.[more]

\r\n

Rockwell Automation releases DataSite RTU
\r\n Low-power\r\nremote terminal unit has solar-powered option. [more]

\r\n

Multivac H 100 robotic handling module
\r\n Precision\r\nrobotics in packaging machinery.[more]

\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Manufacturing Group | Contact\r\nUs | Media Kit\r\n| please\r\nunsubscribe me
Copyright Reed\r\nBusiness Information.
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
You have\r\nreceived this email because you are important to myfen.com.au.\r\nFor further details regarding the myfen.com.au privacy policy please\r\nvisit www.reedbusiness.com.au/privacy.asp
\r\n
 
\r\n
 
\r\n
\r\n\r\n\r\n\r\n', '', 'Wed, 01 Jul 2009 12:31:12 +1000', '2009-07-01 13:02:02', 66, 'CMC7948VE352072-852 TEST TERST'); -INSERT INTO `emails` (`id`, `to`, `cc`, `from`, `body`, `plainbody`, `date`, `created`, `enquiry_id`, `subject`) VALUES -(41, 'vault@cmctechnologies.com.au ', '', 'vault@cmctech', '\r\n\r\n\r\n\r\n\r\n
\r\n
\r\n-------- Original Message --------\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Subject: Dick Smith - Red Hot Deals from the Techxperts
Date: Wed, 01 Jul 2009 12:44:09 +1000
From: Dick Smith <feedback@dse.com.au>
To: <mcarpis@cmctechnologies.com.au>
\r\n
\r\n
\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
If you cannot\r\nview the email below, please view online
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Store Locator
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Visit our website |\r\n Contact us\r\n| Update\r\nprofile | Subscribe\r\n| Send to friend

\r\n
\r\n
\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n

\r\n
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n

\r\n
\r\n
\r\n

\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

\r\n
\r\n
\r\n
\r\n
\r\n
 
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n
\r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n

Dear Maria\r\nCarpis,
\r\n
\r\n
Are you\r\nafter some Red Hot Deals from Dick Smith? Well it''s your lucky day.\r\nWe''ve got Red Hot Deals, and some Techxpert info on the new Nikon\r\nCameras, plus we''re giving away 7 of them!
\r\n
\r\nNeed Techxpert help in your home? Check out our Mobile Techxpert\r\nServices!

\r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n

\r\n
- Red Hot Deals
\r\n- Most Popular Products
\r\n - Win 1 of 7 Nikon Cameras

\r\n - Techxpert Tips: Nikon Cameras
\r\n - Need help from the Techxperts?

\r\n
 
\r\n
\r\n \r\n
\r\n
\r\n
\r\n
 
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n  Red\r\nHot\r\nDeals
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n
  
\r\n
Wii Console and Wii Fit Package
\r\n $533.00 if items\r\npurchased individually!
\r\n
$449
\r\n

\r\n
Palm Treo 500 Smartphone
\r\nSave $300.00
\r\n
$197
\r\n

\r\n
 NAVMAN S45 In-Car Navigator
\r\n
Save $50.00
\r\n $247
\r\n

\r\n
\r\n
\r\n
\r\n \r\n
  
\r\n
 XH1770
\r\n
Microsoft Office Home\r\nand Student 2007 with Outlook 2007
\r\n
$246.00\r\nif items purchased individually!
\r\n $196
\r\n
\r\n
 DGTEC Freeview HD STB DGFV7200
\r\n
Save $40.00
\r\n $189

\r\n
\r\n
WD Elements 1TB\r\nDesktop External Hard Drive  
\r\n
Save $30.00
\r\n $169
\r\n
\r\n
\r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n
 
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n  Most\r\nPopular Products
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n
  
\r\n
Toshiba Satellite L300/0VK Notebook
\r\nOnly $698 after $150 cashback via\r\nredemption
\r\n
$848
\r\n

\r\n
LOGITECH Wireless Desktop Wave Keyboard
\r\nNormally $116.00
\r\n
$99
\r\n

\r\n
 DSE 7inch Portable DVD Player
\r\n
Exclusive!
\r\n$99

\r\n

\r\n
\r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n
 
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n  Win\r\n1 of 7 Nikon Digital Cameras
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

Fresh to Dick Smith are 3 of the hottest\r\nnew cameras from Nikon.
\r\n
\r\nWe’re giving away 1 x DSLR D5000, 1 x COOLPIX P90 and 5 x COOLPIX 230S\r\nCameras.The total prize pool is worth over $4000! For info on these new\r\ncameras, and to enter the competition, click through here.

\r\n
\r\n

\r\n

\r\n
 
\r\n
\r\n
\r\n
\r\n
\r\n
 
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n  Techxpert\r\nTips – Nikons 3 Hottest\r\nNew Cameras
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n

\r\n
\r\n
\r\n

Check out 3 of\r\nthe hottest new cameras from Nikon. The D5000 and COOLPIX P90 offer\r\nsuperior creative control when composing your shots while the COOLPIX\r\nS230 is an awesome everyday camera for capturing those spontaneous\r\nmoments in life. Have a look at some of the\r\nfeatures of these fantastic new cameras from Nikon.
\r\n

\r\n
Learn More\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
\r\n
 
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n   Need Help From The Techxperts?\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n
\r\n \r\n \r\n
\r\n
\r\n At Dick Smith, we provide a number of\r\nadditional services designed to make your life easier:

\r\n
\r\n
Mobile TechxpertsMobile\r\nTechxpert Services* - We can save you the hassle!
\r\n
Our\r\nteam of mobile Techxperts will come to you for all your home\r\nentertainment and computing needs.
\r\n
\r\nWe can setup your home computer (PC or MAC), get it online, connect and\r\nconfigure a wireless network, update your software, fix things for\r\nyou when they go wrong, train you so you get the most out of your\r\ncomputer, and more! And that''s just for computers!
\r\n
\r\nSome of our home entertainment services include (and are not limited\r\nto), delivering your new TV or home theatre system,\r\nconnecting everything so it works together, setting up a universal\r\nremote, getting your gaming consoles on the Internet, configuring and\r\ncreating a custom setup - or just teaching you how to use everything! 
\r\n
\r\n
\r\nNeed our help?\r\nCall 1300 880 646 and book your Mobile Techxpert today! 
\r\n
\r\n*Only available in Capital Cities and Surrounds (NSW, VIC, QLD, ACT,\r\nWA, SA and NT)

\r\n \r\n

\r\n
\r\n \r\n
\r\n
\r\n \r\n \r\n \r\n \r\n
 
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n
\r\n Follow us on Twitter
\r\nFollow us on Twitter...
\r\n http://twitter.com/dicksmith\r\n
\r\n \r\n
\r\n
\r\n
\r\n
 
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n \r\n \r\n \r\n  \r\n \r\n \r\n Dick Smith\r\n \r\n
Dick\r\nSmith \r\n- Talk to the Techxperts
\r\n Head Office Address
\r\nPO Box 500
\r\nRegents Park DC NSW 2143 Australia
\r\nTelephone: (02) 9642-9100
\r\n
\r\n \r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
Privacy Policy\r\n| Visit our website\r\n| Contact us\r\n| Unsubscribe | Send to friend
\r\n
\r\n
\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n
\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n

\r\n
\r\nThis email was sent by The Web Team, Dick Smith, 2 Davidson\r\nSt, Chullora NSW, 2190 to mcarpis@cmctechnologies.com.au
\r\n

\r\n Unsubscribe

\r\n
\r\n
\r\n
\r\n\r\n\r\n\r\n', '', 'Wed, 01 Jul 2009 12:49:21 +1000', '2009-07-01 13:02:02', 57, '[Fwd: Dick Smith - Red Hot Deals from the Techxperts] CMC7939NE372088-247'); - --- -------------------------------------------------------- - --- --- Table structure for table `email_attachments` --- - -CREATE TABLE IF NOT EXISTS `email_attachments` ( - `id` int(11) NOT NULL auto_increment, - `name` varchar(255) NOT NULL, - `type` varchar(255) NOT NULL, - `size` int(11) NOT NULL, - `data` longblob NOT NULL, - `created` datetime NOT NULL, - `email_id` int(11) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; - --- --- Dumping data for table `email_attachments` --- - - --- -------------------------------------------------------- - --- --- Table structure for table `enquiries` --- - -CREATE TABLE IF NOT EXISTS `enquiries` ( - `id` int(11) NOT NULL auto_increment, - `created` datetime NOT NULL, - `title` varchar(255) NOT NULL COMMENT 'enquirynumber', - `user_id` int(11) NOT NULL, - `customer_id` int(11) NOT NULL, - `contact_id` int(11) NOT NULL, - `state_id` int(11) NOT NULL, - `country_id` int(11) NOT NULL, - `principle_id` int(11) NOT NULL, - `status_id` int(11) NOT NULL, - `comments` text NOT NULL, - `principle_code` int(3) NOT NULL COMMENT 'Numeric Principle Code', - `gst` tinyint(1) NOT NULL COMMENT 'GST applicable on this enquiry', - `billing_address_id` int(11) default NULL, - `shipping_address_id` int(11) default NULL, - `posted` tinyint(1) NOT NULL COMMENT 'has the enquired been posted', - `send_enquiry_email` tinyint(1) NOT NULL default '1' COMMENT 'Check box to disable sending an Enquiry Confirmation Email', - `hidden` tinyint(1) default NULL COMMENT 'Is this enquiry hidden (added twice or incorrectly. Mark it such and hide it from Index)', - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=78 ; - --- --- Dumping data for table `enquiries` --- - -INSERT INTO `enquiries` (`id`, `created`, `title`, `user_id`, `customer_id`, `contact_id`, `state_id`, `country_id`, `principle_id`, `status_id`, `comments`, `principle_code`, `gst`, `billing_address_id`, `shipping_address_id`, `posted`, `send_enquiry_email`, `hidden`) VALUES -(1, '2009-01-17 17:35:39', 'CMC7204NE652190-1', 8, 1, 1, 1, 1, 1, 3, '', 65, 1, 1, 3, 1, 1, 0), -(2, '2009-01-20 16:13:14', 'CMC7884NE372041-205', 8, 3, 4, 1, 1, 5, 1, '', 37, 1, 0, 0, 0, 1, 0), -(3, '2009-01-20 16:24:26', 'CMC7885NE372042-206', 8, 3, 4, 1, 1, 5, 1, '', 37, 1, 0, 0, 0, 1, 0), -(4, '2009-01-20 16:24:54', 'CMC7886NE372043-207', 8, 3, 4, 1, 1, 5, 1, '', 37, 1, 0, 0, 0, 1, 0), -(5, '2009-01-20 16:25:20', 'CMC7887NE372044-208', 8, 3, 4, 1, 1, 5, 1, '', 37, 1, 0, 0, 0, 1, 0), -(6, '2009-01-20 16:28:58', 'CMC7888NE352068-550', 8, 3, 4, 1, 1, 4, 1, '', 35, 1, 0, 0, 0, 1, 0), -(7, '2009-01-20 16:31:11', 'CMC7889NE352069-551', 8, 3, 4, 1, 1, 4, 1, '', 35, 1, NULL, NULL, 0, 1, 0), -(8, '2009-01-20 16:34:26', 'CMC7890NE95182-35', 8, 3, 4, 1, 1, 3, 1, '', 95, 1, NULL, NULL, 0, 1, 0), -(9, '2009-01-20 16:39:26', 'CMC7891NE372045-209', 8, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(10, '2009-01-20 16:46:21', 'CMC7892NE372046-210', 8, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(11, '2009-01-20 16:54:02', 'CMC7893NE372047-211', 8, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(12, '2009-01-20 16:55:04', 'CMC7894NE372048-212', 8, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(13, '2009-01-20 16:59:58', 'CMC7895NE372049-213', 7, 3, 4, 1, 1, 5, 6, '', 37, 1, NULL, NULL, 1, 1, 0), -(14, '2009-01-20 17:07:12', 'CMC7896NE372050-214', 10, 3, 4, 1, 1, 5, 4, '', 37, 1, NULL, NULL, 0, 1, 0), -(15, '2009-01-21 12:06:59', 'CMC7897NE372051-215', 8, 2, 6, 1, 1, 5, 1, '', 37, 1, 2, 2, 0, 1, 0), -(16, '2009-01-21 12:39:26', 'CMC7898NE372052-216', 10, 2, 6, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(17, '2009-01-21 12:47:46', 'CMC7899NE372053-217', 8, 2, 6, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(18, '2009-01-21 12:50:38', 'CMC7900NE372054-218', 8, 2, 2, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(19, '2009-01-21 12:51:30', 'CMC7901NE372055-219', 10, 2, 6, 1, 1, 5, 5, '', 37, 1, NULL, NULL, 0, 1, 0), -(20, '2009-01-21 15:47:36', 'CMC7902NE372056-220', 10, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(21, '2009-01-21 15:48:03', 'CMC7903NE372057-221', 10, 2, 2, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(22, '2009-01-21 15:48:11', 'CMC7904NE372058-222', 10, 2, 6, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(23, '2009-01-21 16:00:48', 'CMC7905ACTE372059-1', 10, 3, 4, 4, 1, 1, 1, '', 37, 1, 0, 0, 0, 1, 0), -(24, '2009-01-23 11:14:04', 'CMC7906VE652214-538', 9, 3, 4, 2, 1, 2, 1, 'Rah', 65, 1, 4, NULL, 0, 1, 0), -(25, '2009-01-23 11:14:31', 'CMC7907VE652215-539', 9, 3, 4, 2, 1, 2, 1, '[27-3-2009 @13:38 KC]\r\nOPTION 1: Another enquiry for\r\nsupply of Magnetic Alarm\r\nSystem (re-usable) - see page\r\n3 of attached document OPTION\r\n2: You can also offer the\r\noption of (bursting disc +\r\nholder + alarm system w/ extra\r\ndiscs). We are tyring to stay\r\naway from carbon/graphite\r\ndisc. INFORMATION FROM CURRENT\r\nDISC: Make: Donadon SDD srl\r\nType: C - DCD/389 Size: DN 1"\r\nLot No: 271171/03 Yr. 2007\r\nSerial No: 1933 AH Material:\r\nASTM A240 316 Discharge Area:\r\n5.72 cm2 Disc Holder Type:\r\nHI/389 Burst pressure: 4.5 bar\r\n+/- 5% @ 25 deg C', 65, 1, 4, NULL, 0, 1, 0), -(26, '2009-01-23 14:57:45', 'CMC7908NE372060-223', 10, 3, 4, 1, 1, 5, 11, '[27-3-2009 @13:38 KC]\r\n[20-3-2009 @9:27 KC]\r\n[27-2-2009 @12:30 KC]\r\n\r\nBut where did that knowledge\r\nexist? Only in his\r\nown consciousness, which in\r\nany case must soon be\r\nannihilated. And if all\r\nothers accepted the lie which\r\nthe Party imposed--if all\r\nrecords told the\r\nsame tale--then the lie passed\r\ninto history and became truth.\r\n''Who controls\r\nthe past,'' ran the Party\r\nslogan, ''controls the future:\r\nwho controls the\r\npresent controls the past.'' ', 37, 1, 4, 4, 1, 1, 0), -(27, '2009-02-03 12:18:58', 'CMC7909NE372061-224', 10, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(28, '2009-02-03 15:13:21', 'CMC7910NE372062-225', 10, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(29, '2009-02-03 15:18:11', 'CMC7911NE372063-226', 10, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(30, '2009-02-03 15:25:57', 'CMC7912NE372064-227', 10, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(31, '2009-02-03 16:10:00', 'CMC7913NE372065-228', 9, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(32, '2009-02-03 16:12:56', 'CMC7914NE372066-229', 10, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(33, '2009-02-04 11:03:29', '', 10, 3, 17, 1, 1, 5, 1, '', 0, 1, 4, 4, 0, 1, 0), -(34, '2009-02-04 12:04:59', 'CMC7916NE372067-230', 9, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(35, '2009-02-04 12:12:22', 'CMC7917VE372068-61', 10, 3, 28, 2, 1, 5, 1, '', 37, 1, 4, 4, 0, 1, 0), -(36, '2009-02-04 12:20:04', 'CMC7918NE372069-231', 9, 3, 29, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(37, '2009-02-04 12:32:49', 'CMC7919NE372070-232', 10, 3, 0, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(38, '2009-02-04 12:35:13', 'CMC7920NE372071-233', 9, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(39, '2009-02-04 12:38:43', 'CMC7921NE652216-500', 7, 3, 30, 1, 1, 2, 3, 'Awesooome.', 65, 1, NULL, NULL, 0, 1, 0), -(40, '2009-02-04 15:41:32', 'CMC7922NE372072-234', 10, 7, 32, 1, 1, 5, 5, '', 37, 1, NULL, NULL, 0, 1, 0), -(41, '2009-02-04 16:25:32', 'CMC7923NE372073-235', 10, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 0, 0), -(42, '2009-02-04 16:26:39', 'CMC7924NE372074-236', 10, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(43, '2009-02-04 16:27:20', 'CMC7925NE372075-237', 10, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 0, 0), -(44, '2009-02-05 10:35:57', 'CMC7926ACTE372076-2', 7, 3, 4, 4, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 0, 0), -(45, '2009-02-05 10:52:50', 'CMC7927NTE372077-2', 7, 3, 4, 6, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 0, 0), -(46, '2009-02-05 10:58:50', 'CMC7928OE372078-19', 7, 3, 4, 9, 2, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(47, '2009-02-05 15:53:15', 'CMC7929ACTE352070-1', 10, 4, 7, 4, 1, 4, 3, '', 35, 1, NULL, NULL, 0, 0, 0), -(48, '2009-02-09 15:58:10', 'CMC7930NE372079-238', 10, 3, 4, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 0, 0), -(49, '2009-02-09 16:23:01', 'CMC7931NE372080-239', 9, 2, 6, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(50, '2009-02-09 16:24:51', 'CMC7932NE372081-240', 9, 2, 6, 1, 1, 5, 3, '', 37, 1, NULL, NULL, 0, 1, 0), -(51, '2009-02-09 16:26:57', 'CMC7933NE372082-241', 9, 2, 2, 1, 1, 5, 5, '', 37, 1, NULL, NULL, 0, 1, 0), -(52, '2009-02-09 16:28:07', 'CMC7934NE372083-242', 9, 2, 6, 1, 1, 5, 3, '', 37, 1, NULL, NULL, 0, 1, 0), -(53, '2009-02-09 16:31:05', 'CMC7935NE372084-243', 9, 2, 6, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(54, '2009-02-09 16:33:42', 'CMC7936NE372085-244', 9, 2, 6, 1, 1, 5, 4, '', 37, 1, NULL, NULL, 0, 1, 0), -(55, '2009-02-09 16:51:46', 'CMC7937NE372086-245', 9, 2, 6, 1, 1, 5, 5, '', 37, 1, NULL, NULL, 0, 1, 0), -(56, '2009-02-09 17:04:53', 'CMC7938NE372087-246', 9, 2, 33, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(57, '2009-02-12 14:54:34', 'CMC7939NE372088-247', 8, 2, 33, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(58, '2009-02-12 14:56:34', 'CMC7940NE372089-248', 8, 2, 33, 1, 1, 5, 3, '[27-3-2009 @10:22 KC]\r\n[27-3-2009 @10:21 KC]\r\n[27-3-2009 @10:20 KC]\r\n[27-3-2009 @10:16 KC] It''s a\r\nIt''s a\r\nThis is a sentence sentence\r\nsentence sentence\r\nsentence sentence sentence\r\nsentence sentence\r\nsentence sentence sentence\r\nsentence sentence\r\nsentence sentence sentence\r\nsentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\nsentence sentence sentence\r\n comment\r\n[23-2-2009 @12:50 KC]\r\nSome other Comment\r\n[23-2-2009 @12:49 KC]\r\n[23-2-2009 @11:53]\r\n[23-2-2009]\r\nThis is a Another Comment\r\n[23-2-2009]\r\nAnother Comment!\r\n[23-2-2009]\r\nSome Comment ', 37, 1, NULL, NULL, 0, 1, 0), -(59, '2009-02-23 14:41:40', 'CMC7941NE372090-249', 10, 2, 2, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 1, 0), -(60, '2009-02-23 14:41:46', 'CMC7942NE372091-250', 10, 2, 2, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 0, 0), -(61, '2009-02-23 15:56:52', 'CMC7943NE372092-251', 10, 2, 2, 1, 1, 5, 1, '', 37, 1, NULL, NULL, 0, 0, 0), -(76, '2009-07-07 12:17:05', 'CMC7945NE372093-252', 8, 2, 33, 1, 1, 5, 2, '[6-8-2009 @15:11 KC]Moar\r\nComments. Cache dont get\r\nmessed up!\r\n[6-8-2009 @12:21 KC]\r\n[6-8-2009 @12:20 KC]Mad Comments!!\r\n', 37, 1, 2, 2, 1, 0, 0), -(66, '2009-02-24 14:30:57', 'CMC7948VE352072-852', 9, 2, 38, 2, 1, 4, 5, '[25-2-2009 @9:47 KC]\r\nSome Other Comment\r\n---\r\n', 35, 1, NULL, 2, 0, 1, 0), -(77, '2009-08-20 10:09:06', 'CMC7946NE372094-253', 10, 18, 39, 1, 1, 5, 1, '[6-10-2009 @22:01 KC]\r\n', 37, 1, 0, 0, 0, 0, NULL); - --- -------------------------------------------------------- - --- --- Table structure for table `enquiry_email_queues` --- - -CREATE TABLE IF NOT EXISTS `enquiry_email_queues` ( - `id` int(11) NOT NULL auto_increment, - `enquiry_id` int(11) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Queue to send Enquiry added notifications' AUTO_INCREMENT=4 ; - --- --- Dumping data for table `enquiry_email_queues` --- - -INSERT INTO `enquiry_email_queues` (`id`, `enquiry_id`) VALUES -(1, 69), -(2, 70), -(3, 71); - --- -------------------------------------------------------- - --- --- Table structure for table `enquiry_files` --- - -CREATE TABLE IF NOT EXISTS `enquiry_files` ( - `id` int(11) NOT NULL auto_increment, - `name` varchar(255) NOT NULL, - `type` varchar(255) NOT NULL, - `size` int(11) NOT NULL, - `data` longblob NOT NULL, - `created` datetime NOT NULL, - `enquiry_id` int(11) NOT NULL, - `description` mediumtext NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; - --- --- Dumping data for table `enquiry_files` --- - - --- -------------------------------------------------------- - --- --- Table structure for table `groups` --- - -CREATE TABLE IF NOT EXISTS `groups` ( - `id` int(11) NOT NULL auto_increment, - `name` varchar(255) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ; - --- --- Dumping data for table `groups` --- - -INSERT INTO `groups` (`id`, `name`) VALUES -(6, 'Administrators'), -(5, 'Managers'), -(4, 'Users'); - --- -------------------------------------------------------- - --- --- Table structure for table `industries` --- - -CREATE TABLE IF NOT EXISTS `industries` ( - `id` int(11) NOT NULL auto_increment, - `name` varchar(255) NOT NULL, - `parent_id` int(11) default NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=79 ; - --- --- Dumping data for table `industries` --- - -INSERT INTO `industries` (`id`, `name`, `parent_id`) VALUES -(1, 'Research', NULL), -(2, 'Food & Beverages', NULL), -(3, 'Dairy - Cheese, Butter, Milk', 2), -(4, 'Wine', 2), -(5, 'Soft Drinks/Juice', 2), -(6, 'Brewing', 2), -(7, 'Alcohol & Distilleries', 2), -(8, 'Flour, Starch, Gluten Milling', 2), -(9, 'Grain Storing/Handling', 2), -(10, 'Chocolate & Confectionary', 2), -(11, 'Snack Foods', 2), -(12, 'Sugar Milling & Refining', 2), -(13, 'Cereals', 2), -(14, 'Spices', 2), -(15, 'Coffee & Tea', 2), -(16, 'Wood Processing', NULL), -(17, 'MDF (Medium Density Fibreboard)', 16), -(18, 'Particle Board', 16), -(19, 'Saw Mills', 16), -(20, 'Cabinetry', 16), -(21, 'Other', 16), -(22, 'Research - General', 1), -(23, 'Food & Beverages - Other', 2), -(24, 'Pulp & Paper', 0), -(25, 'Pulp & Paper - Other', 24), -(26, 'Oil & Gas', 0), -(27, 'Offshore Processing', 26), -(28, 'Onshore Processing', 26), -(29, 'Power', 26), -(32, 'Refining', 26), -(33, 'Storage Terminals', 26), -(52, 'Chemical & Petrochemical - General', 51), -(51, 'Chemical & Petrochemical', 0), -(40, 'Heating, Ventillation, Air-Conditioning - General', 39), -(39, 'Heating, Ventillation, Air-Conditioning', 0), -(59, 'Hospitals', 57), -(58, 'Medical - General', 57), -(57, 'Medical', 0), -(56, 'Education - General', 55), -(55, 'Education', 0), -(54, 'Plumbing - General', 53), -(53, 'Plumbing', 0), -(61, 'OEM - Original Equipment Manufacturers', 0), -(62, 'OEM - General', 61), -(63, 'Government', 0), -(64, 'Government - General', 63), -(65, 'My Awesome Industry', 0), -(66, 'First SubIndustry!!', 65), -(67, 'New Sub Industry!!', 65), -(68, 'NewSUBBB', 65), -(69, 'Top Level', 0), -(70, 'Second Level', 69), -(71, 'First Indust', 0), -(72, '', 71), -(73, 'Rah', 71), -(74, 'MyNewIndustry', 0), -(75, 'Something', 74), -(76, 'Rah', 0), -(77, '', 76), -(78, 'radd', 76); - --- -------------------------------------------------------- - --- --- Table structure for table `industries_customers` --- - -CREATE TABLE IF NOT EXISTS `industries_customers` ( - `id` int(11) NOT NULL auto_increment, - `customer_id` int(11) NOT NULL, - `industry_id` int(11) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=20 ; - --- --- Dumping data for table `industries_customers` --- - -INSERT INTO `industries_customers` (`id`, `customer_id`, `industry_id`) VALUES -(11, 2, 17), -(10, 2, 22), -(9, 2, 7), -(8, 2, 56), -(12, 2, 21), -(13, 18, 15), -(14, 18, 3), -(15, 18, 8), -(19, 15, 12), -(18, 15, 15); - --- -------------------------------------------------------- - --- --- Table structure for table `jobs` --- - -CREATE TABLE IF NOT EXISTS `jobs` ( - `id` int(11) NOT NULL auto_increment, - `created` datetime NOT NULL, - `principle_ship_date` date NOT NULL, - `arrive_date` date NOT NULL, - `sent_date` date NOT NULL, - `name` varchar(255) NOT NULL COMMENT 'Job Number', - `enquiry_id` int(11) NOT NULL, - `customer_id` int(11) NOT NULL, - `contact_id` int(11) NOT NULL, - `billing_address_id` int(11) NOT NULL, - `shipping_address_id` int(11) NOT NULL, - `jobstatus_id` int(11) NOT NULL, - `comments` text NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; - --- --- Dumping data for table `jobs` --- - - --- -------------------------------------------------------- - --- --- Table structure for table `jobstatuses` --- - -CREATE TABLE IF NOT EXISTS `jobstatuses` ( - `id` int(11) NOT NULL auto_increment, - `name` varchar(255) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; - --- --- Dumping data for table `jobstatuses` --- - - --- -------------------------------------------------------- - --- --- Table structure for table `job_products` --- - -CREATE TABLE IF NOT EXISTS `job_products` ( - `id` int(11) NOT NULL auto_increment, - `quoted_product_id` int(11) NOT NULL, - `job_id` int(11) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; - --- --- Dumping data for table `job_products` --- - - --- -------------------------------------------------------- - --- --- Table structure for table `principles` --- - -CREATE TABLE IF NOT EXISTS `principles` ( - `id` int(11) NOT NULL auto_increment, - `name` varchar(255) NOT NULL COMMENT 'Principle Name', - `code` int(11) NOT NULL COMMENT 'Principle code', - `country_id` int(11) NOT NULL COMMENT 'Country Foreign Key', - `currency_id` int(11) NOT NULL, - `short_name` varchar(50) NOT NULL, - `url` varchar(300) default NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ; - --- --- Dumping data for table `principles` --- - -INSERT INTO `principles` (`id`, `name`, `code`, `country_id`, `currency_id`, `short_name`, `url`) VALUES -(1, 'F.H Papenmeier', 65, 3, 1, 'Papenmeier', 'http://www.papenmeier.de'), -(2, 'Herberts', 65, 3, 1, '', NULL), -(3, 'T and D', 95, 6, 5, '', NULL), -(4, 'Mid-West Instrument', 35, 1, 3, 'Mid-West', NULL), -(5, 'Alia Inc', 37, 4, 3, 'Alia-INC', NULL), -(7, 'ffffffff', 65, 1, 1, '', NULL), -(8, 'Reading Tech', 36, 4, 3, '', NULL); - --- -------------------------------------------------------- - --- --- Table structure for table `principle_addresses` --- - -CREATE TABLE IF NOT EXISTS `principle_addresses` ( - `id` int(11) NOT NULL auto_increment, - `address` text NOT NULL COMMENT 'street or unit number and street name', - `city` varchar(255) NOT NULL COMMENT 'Suburb / City', - `state` varchar(255) NOT NULL COMMENT 'State', - `country_id` int(11) NOT NULL COMMENT 'Country foreign Key', - `principle_id` int(11) NOT NULL COMMENT 'Customer foreign key', - `type` varchar(255) NOT NULL COMMENT 'either bill / ship / both', - `postcode` varchar(50) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; - --- --- Dumping data for table `principle_addresses` --- - -INSERT INTO `principle_addresses` (`id`, `address`, `city`, `state`, `country_id`, `principle_id`, `type`, `postcode`) VALUES -(1, '1901 Papenmeier Rd', 'PapenTown', 'PapenState', 3, 1, '2', '15981598'); - --- -------------------------------------------------------- - --- --- Table structure for table `principle_contacts` --- - -CREATE TABLE IF NOT EXISTS `principle_contacts` ( - `principle_id` int(11) NOT NULL, - `id` int(11) NOT NULL auto_increment, - `first_name` varchar(255) NOT NULL, - `last_name` varchar(255) NOT NULL, - `job_title` varchar(255) default NULL, - `email` varchar(255) NOT NULL, - `phone` varchar(255) NOT NULL, - `fax` varchar(255) default NULL, - `mobile` varchar(255) default NULL, - `notes` text NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; - --- --- Dumping data for table `principle_contacts` --- - -INSERT INTO `principle_contacts` (`principle_id`, `id`, `first_name`, `last_name`, `job_title`, `email`, `phone`, `fax`, `mobile`, `notes`) VALUES -(1, 1, 'Papen', 'Man', 'Engineer', 'papenman@papenmeier.de', '12591051950', '150190', '', 'Purchasing Guy'), -(1, 2, 'Sales', 'Guy', 'Sales Guy', 'sguy@papenmeier.de', '150150910590151', '', '', 'Sales Guy'), -(4, 3, 'Mid-WestGuy', 'Mid-WestPerson', 'Sales ', 'person@midwest.com', '12512598599012515', '', '', 'Notes!!!z'), -(4, 4, 'Bob', 'Jones', 'Salesman', 'bjones@mw.com', '', '', '', ''); - --- -------------------------------------------------------- - --- --- Table structure for table `products` --- - -CREATE TABLE IF NOT EXISTS `products` ( - `id` int(11) NOT NULL auto_increment, - `principle_id` int(11) NOT NULL COMMENT 'Principle FK', - `product_category_id` int(11) NOT NULL, - `title` varchar(255) NOT NULL COMMENT 'This must match the Title in the Excel Costing File', - `description` text NOT NULL, - `model_number` varchar(255) default NULL COMMENT 'Part or model number principle uses to identify this product', - `model_number_format` varchar(255) default NULL COMMENT '%1% - first item, %2% , second item etc ', - `notes` text COMMENT 'Any notes about this product. Note displayed on quotes', - `stock` tinyint(1) NOT NULL COMMENT 'Stock or Ident', - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=25 ; - --- --- Dumping data for table `products` --- - -INSERT INTO `products` (`id`, `principle_id`, `product_category_id`, `title`, `description`, `model_number`, `model_number_format`, `notes`, `stock`) VALUES -(2, 4, 2, 'Model 120 ''Filter Minder'' Differential Pressure Gauge', '
STANDARD MODEL SPECIFICATIONS

120: 6000 P.S.I.G Working pressure, Adjusting Screws & End Plugs, Stainless steel piston, ceramic magnet, “Engineering Plastic” Gauge Case with shatter-resistant acrylic lens

', '120', '%1-%2%3-%4%5-%6%7', '', 0), -(3, 3, 2, 'RTR-51A - Wireless Temperature Data Logger', '

\r\n\r\n\r\n \r\n

Temperature measurement range: -40 to 80°C (internal sensor)
\r\nMeasurement Display Resolution: 0.1°C

\r\n

Measurement Accuracy: Average ±0.5°C

\r\n

Recording Interval: 1,2,5,10,15,20,30 seconds / 1,2,5,10,15,20,30,60 minutes

\r\n

Total of 15 choices (Excluding Event data)

\r\n

Recording Capacity: 16,000 reading x 1 Channel

\r\n

Battery Life: Approx. 6 Months

\r\n

Protection: IP67 (Immersion proof)

\r\n

 

\r\n

', 'RTA-51A', NULL, '', 0), -(4, 3, 2, 'VR-71 Voltage Recorder', '

Mid-West Model 120 DP Gauge

MODEL NO. 120 - SG - 00 – O(CA)
Range: 0 – 250 kPa
Switch Set @ Please Advise
Dial: 2-1/2" Round

Standard Model Specifications
120: 6000 P.S.I.G Working pressure, Adjusting Screws & End Plugs, Stainless steel piston, ceramic magnet, “Engineering Plastic” Gauge Case with shatter-resistant acrylic lens+/- 3-2-3% full scale accuracy(ascending)
Material S: 316 Stainless Steel body, SS piston
Dial Size: G: 4-1/2” Round Uni-Directional Anod. Al Housing
Seals: 0: Buna N
Connections: 0: 1/4" FNPT Back connections
Options: O: None
Electrical Configurations C: 1 Switch with 1/4" FNPT Electrical Con. NEMA 4X
Electrical Specifications: A: S.P.D.T, 3W, 0.25 Amp., 125 VAC/VDC (Standard)

', 'VR-71', '', '', 0), -(24, 1, 1, 'OMG This has all the pretty things', '

\r\n BOLD TEXT

\r\n

\r\n  

\r\n

\r\n BOLD ITALICS

\r\n

\r\n  

\r\n

\r\n YAY2

\r\n', NULL, NULL, '', 0); - --- -------------------------------------------------------- - --- --- Table structure for table `product_attachments` --- - -CREATE TABLE IF NOT EXISTS `product_attachments` ( - `id` int(11) NOT NULL auto_increment, - `name` varchar(255) NOT NULL, - `type` varchar(255) NOT NULL, - `size` int(11) NOT NULL, - `filename` varchar(255) NOT NULL, - `created` datetime NOT NULL, - `product_id` int(11) NOT NULL, - `description` mediumtext NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; - --- --- Dumping data for table `product_attachments` --- - - --- -------------------------------------------------------- - --- --- Table structure for table `product_categories` --- - -CREATE TABLE IF NOT EXISTS `product_categories` ( - `id` int(11) NOT NULL auto_increment, - `name` varchar(255) NOT NULL COMMENT 'short name for the category', - `description` varchar(500) default NULL COMMENT 'a longer description if needed', - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; - --- --- Dumping data for table `product_categories` --- - -INSERT INTO `product_categories` (`id`, `name`, `description`) VALUES -(1, 'Flow Measurement', ''), -(2, 'Differential Pressure', ''), -(3, 'Vision in the Process', ''); - --- -------------------------------------------------------- - --- --- Table structure for table `product_options` --- - -CREATE TABLE IF NOT EXISTS `product_options` ( - `id` int(11) NOT NULL auto_increment, - `product_id` int(11) NOT NULL COMMENT 'Principle FK', - `product_options_category_id` int(11) default NULL, - `title` varchar(255) NOT NULL COMMENT 'This must match the Title in the Excel Costing File', - `description` text, - `model_number` varchar(255) default NULL COMMENT 'Part or model number principle uses to identify this product', - `default` tinyint(1) NOT NULL, - `notes` text COMMENT 'Any notes about this product. Note displayed on quotes', - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=21 ; - --- --- Dumping data for table `product_options` --- - -INSERT INTO `product_options` (`id`, `product_id`, `product_options_category_id`, `title`, `description`, `model_number`, `default`, `notes`) VALUES -(1, 2, 1, 'Aluminium Body, S.S. Piston', 'A. Aluminium Body, S.S. Piston (Standard)', 'A', 1, ''), -(4, 2, 2, '2-1/2"Round Uni-Directional Dial', '', 'A', 1, ''), -(3, 2, 1, '316 Stainless Steel body, SS piston', '', 'S', 0, ''), -(5, 2, 2, '4-1/2"Round Uni-Directional Dial', '', 'C', 0, ''), -(10, 2, 4, '1/4" FNPT Back Connections', '1/4" FNPT Back Connections', '0', 1, ''), -(6, 2, 3, 'Buna-N', '', '0', 0, ''), -(7, 2, 3, 'Viton', '', '1', 1, ''), -(8, 2, 3, 'Neoprene', '', '2', 0, ''), -(9, 2, 3, 'Teflon', '', '4', 0, ''), -(11, 2, 4, '1/4" FNTP End Connections', '1/4" FNTP End Connections', '2', 0, ''), -(12, 2, 4, '7/16" - 20 Str. Thd. O-Ring Port (Back Connections)', '7/16" - 20 Str. Thd. O-Ring Port (Back Connections)', '6', 0, ''), -(13, 2, 4, '1/2" FNPT Stainless Steel Adaptors', '1/2" FNPT Stainless Steel Adaptors', '7', 0, ''), -(14, 2, 4, '1/2" FNPT Monel Adaptors', '1/2" FNPT Monel Adaptors', '8', 0, ''), -(15, 2, 4, 'Special (Uncoded Options)', '', '9', 0, ''), -(16, 2, 5, 'None', '', 'O', 1, ''), -(17, 2, 5, 'Reversed High/Low Process Connections', 'Reversed High/Low Process Connections', 'A', 0, ''), -(18, 2, 5, 'DIN2353 12-S(12mm) Steel Tube Fittings (2)', 'DIN2353 12-S(12mm) Steel Tube Fittings (2)', 'B', 0, ''), -(19, 2, 5, 'Mounting Holes in Gauge Body for Field Mounting of Electrical Configurations Options A & B', '', 'C', 0, ''), -(20, 2, 5, 'Mounting Holes in Gauge Body for Field Mounting of Electrical Configurations Options L & M', '', 'D', 0, ''); - --- -------------------------------------------------------- - --- --- Table structure for table `product_options_categories` --- - -CREATE TABLE IF NOT EXISTS `product_options_categories` ( - `id` int(11) NOT NULL auto_increment, - `product_id` int(11) NOT NULL, - `name` varchar(255) NOT NULL, - `location` int(20) NOT NULL COMMENT 'Its place in the model number. 1 starts from after the Model number of the Product. ie 120-A , A is in location 1.', - `exclusive` tinyint(1) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; - --- --- Dumping data for table `product_options_categories` --- - -INSERT INTO `product_options_categories` (`id`, `product_id`, `name`, `location`, `exclusive`) VALUES -(1, 2, 'Material', 1, 1), -(2, 2, 'Dial Size', 2, 1), -(3, 2, 'Seals', 4, 1), -(4, 2, 'Connections', 6, 1), -(5, 2, 'Options', 7, 0); - --- -------------------------------------------------------- - --- --- Table structure for table `quotes` --- - -CREATE TABLE IF NOT EXISTS `quotes` ( - `created` datetime NOT NULL, - `modified` datetime NOT NULL, - `id` int(11) NOT NULL auto_increment, - `enquiry_id` int(50) NOT NULL, - `revision` int(5) NOT NULL COMMENT 'limited at 5 digits. Really, you''re not going to have more revisions of a single quote than that', - `delivery_time` varchar(400) NOT NULL COMMENT 'estimated delivery time for quote', - `payment_terms` varchar(400) NOT NULL, - `days_valid` int(5) NOT NULL, - `date_issued` date NOT NULL, - `valid_until` date NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ; - --- --- Dumping data for table `quotes` --- - -INSERT INTO `quotes` (`created`, `modified`, `id`, `enquiry_id`, `revision`, `delivery_time`, `payment_terms`, `days_valid`, `date_issued`, `valid_until`) VALUES -('2009-08-13 14:17:50', '2009-08-13 14:17:50', 1, 76, 0, '', '', 0, '2009-08-13', '0000-00-00'), -('2009-08-14 12:34:05', '2009-08-14 12:34:05', 2, 76, 1, '', '', 0, '2009-08-14', '0000-00-00'), -('2009-08-20 16:35:01', '2009-08-20 16:35:01', 3, 77, 0, '', '', 0, '2009-08-20', '0000-00-00'), -('2009-08-27 09:57:05', '2009-08-27 09:57:05', 4, 1, 0, '', '', 0, '2009-08-27', '0000-00-00'); - --- -------------------------------------------------------- - --- --- Table structure for table `quote_pages` --- - -CREATE TABLE IF NOT EXISTS `quote_pages` ( - `id` int(11) NOT NULL auto_increment, - `page_number` int(11) NOT NULL, - `content` text NOT NULL, - `quote_id` int(11) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ; - --- --- Dumping data for table `quote_pages` --- - -INSERT INTO `quote_pages` (`id`, `page_number`, `content`, `quote_id`) VALUES -(3, 1, '

Dear Sir,

\r\n

 

\r\n

This is a cover page.

\r\n

 

\r\n

Sincerely.

\r\n

 

\r\n

Me.

', 1), -(2, 2, '

Re: Awesomeosity. V4

\r\n

Dear Mr. Awesome,

\r\n

 

\r\n

Are you awesome? I think AJAX and IFrames seem pretty slick. If only this box was bigger.

\r\n

 

\r\n

Sincerely.

\r\n

 

\r\n

Karl Cordes

\r\n

Awesome Engineer 2.0

\r\n

 

', 1), -(4, 1, '

Re: Some Awesome Product

\r\n

Dear Sir,

\r\n

Thank you for your enquiry regarding Some Awesome Product.

\r\n

 

\r\n

Please see the following quotation with pricing specifications and details for:

\r\n

 

\r\n

1x Awesome Product

\r\n

 

\r\n

We look forward to you receiving your money. Thanks for your business.

\r\n

 

\r\n

Regards,

\r\n

 

\r\n

Karl Cordes

', 2), -(8, 1, '

\r\n Dear Bill,

\r\n

\r\n
\r\n RE: Awesome Products

\r\n

\r\n Thank you for your enquiry regarding our $Principle Products. Please see the following quotation for:

\r\n

\r\n  

\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
\r\n Item\r\n Product
\r\n  \r\n  
\r\n  \r\n  
\r\n

\r\n  

\r\n

\r\n Regards,

\r\n

\r\n
\r\n Sales Engineer

\r\n

\r\n  

\r\n

\r\n Attachments:

\r\n

\r\n attachment1.pdf
\r\n attachment2.pdf

\r\n

\r\n  

\r\n

\r\n  

\r\n

\r\n  

\r\n

\r\n  

\r\n

\r\n  

\r\n

\r\n SOMEONE

\r\n', 3), -(9, 1, '', 4); - --- -------------------------------------------------------- - --- --- Table structure for table `quote_products` --- - -CREATE TABLE IF NOT EXISTS `quote_products` ( - `id` int(11) NOT NULL auto_increment, - `item_number` varchar(4) NOT NULL, - `option` tinyint(1) NOT NULL default '0', - `quantity` float NOT NULL, - `title` varchar(500) NOT NULL, - `description` text NOT NULL, - `quote_id` int(11) NOT NULL, - `product_id` int(11) NOT NULL, - `costing_id` int(11) default NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ; - --- --- Dumping data for table `quote_products` --- - -INSERT INTO `quote_products` (`id`, `item_number`, `option`, `quantity`, `title`, `description`, `quote_id`, `product_id`, `costing_id`) VALUES -(7, '', 0, 0, '', '', 3, 2, NULL), -(8, '', 0, 0, '', '', 3, 2, NULL), -(9, '', 0, 0, '', '', 3, 2, NULL), -(10, '', 0, 0, '', '
STANDARD MODEL SPECIFICATIONS

120: 6000 P.S.I.G Working pressure, Adjusting Screws & End Plugs, Stainless steel piston, ceramic magnet, “Engineering Plastic” Gauge Case with shatter-resistant acrylic lens

', 3, 2, NULL); - --- -------------------------------------------------------- - --- --- Table structure for table `quote_product_options` --- - -CREATE TABLE IF NOT EXISTS `quote_product_options` ( - `id` int(11) NOT NULL auto_increment, - `product_id` int(11) NOT NULL COMMENT 'Principle FK', - `product_options_category_id` int(11) default NULL, - `title` varchar(255) NOT NULL COMMENT 'This must match the Title in the Excel Costing File', - `description` text, - `model_number` varchar(255) default NULL COMMENT 'Part or model number principle uses to identify this product', - `default` tinyint(1) NOT NULL, - `notes` text COMMENT 'Any notes about this product. Note displayed on quotes', - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; - --- --- Dumping data for table `quote_product_options` --- - - --- -------------------------------------------------------- - --- --- Table structure for table `states` --- - -CREATE TABLE IF NOT EXISTS `states` ( - `id` int(11) NOT NULL auto_increment, - `name` varchar(255) NOT NULL, - `shortform` varchar(255) NOT NULL COMMENT 'NSW, ACT etc.', - `enqform` char(3) NOT NULL COMMENT '1 / 2 char for enquiry register', - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ; - --- --- Dumping data for table `states` --- - -INSERT INTO `states` (`id`, `name`, `shortform`, `enqform`) VALUES -(1, 'New South Wales', 'NSW', 'N'), -(2, 'Victoria', 'VIC', 'V'), -(3, 'Tasmania', 'TAS', 'T'), -(4, 'Australian Capital Territory', 'ACT', 'ACT'), -(5, 'Queensland', 'QLD', 'Q'), -(6, 'Northern Territory', 'NT', 'NT'), -(7, 'Western Australia', 'WA', 'W'), -(8, 'South Australia', 'SA', 'S'), -(9, 'Overseas', 'Overseas', 'O'); - --- -------------------------------------------------------- - --- --- Table structure for table `statuses` --- - -CREATE TABLE IF NOT EXISTS `statuses` ( - `id` int(11) NOT NULL auto_increment, - `name` varchar(255) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ; - --- --- Dumping data for table `statuses` --- - -INSERT INTO `statuses` (`id`, `name`) VALUES -(1, 'Request for Quotation '), -(2, 'Assigned to Sales Engineer'), -(3, 'Job Won - Order Placed'), -(4, 'Job Lost on Price'), -(5, 'Quote Issued - Follow Up Needed'), -(6, 'Request for Information'), -(8, 'Job Lost on Price and Delivery'), -(9, 'Job Lost on Delivery'), -(10, 'Job Cancelled or Deferred'), -(11, 'Information Sent'); - --- -------------------------------------------------------- - --- --- Table structure for table `users` --- - -CREATE TABLE IF NOT EXISTS `users` ( - `id` int(11) NOT NULL auto_increment, - `username` char(50) NOT NULL, - `password` char(60) NOT NULL, - `first_name` varchar(255) NOT NULL, - `last_name` varchar(255) NOT NULL, - `email` varchar(255) NOT NULL, - `job_title` varchar(255) NOT NULL, - `group_id` int(11) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ; - --- --- Dumping data for table `users` --- - -INSERT INTO `users` (`id`, `username`, `password`, `first_name`, `last_name`, `email`, `job_title`, `group_id`) VALUES -(10, 'carpis', '374a1a3b89fd13e1e53c3c5b2bdaca4ab56851e4', 'Con', 'Carpis', 'carpis@cmctechnologies.com.au', 'Managing Director', 5), -(9, 'testuser', '80911124513ecddda4547179ccae1221e370d32d', 'Test', 'User', 'tuser@somewhere.com', 'Crash Test Dummy', 4), -(8, 'karl', '88d08476b46fd445bbc88beb928797dee2c91f3c', 'Karl', 'Cordes', 'karl@cmctechnologies.com.au', 'Systems Administrator / Software Developer', 6), -(7, 'orwell', 'f868d22c308249db7e1fb2508d47b82fb139dbcc', 'George', 'Orwell', 'orwell@minitrue.gov.uk', 'Genius', 6); diff --git a/vendors/tcpdf/cache/chapter_demo_1.txt b/vendors/tcpdf/cache/chapter_demo_1.txt deleted file mode 100755 index 422eb436..00000000 --- a/vendors/tcpdf/cache/chapter_demo_1.txt +++ /dev/null @@ -1,10 +0,0 @@ -The year 1866 was marked by a bizarre development, an unexplained and downright inexplicable phenomenon that surely no one has forgotten. Without getting into those rumors that upset civilians in the seaports and deranged the public mind even far inland, it must be said that professional seamen were especially alarmed. Traders, shipowners, captains of vessels, skippers, and master mariners from Europe and America, naval officers from every country, and at their heels the various national governments on these two continents, were all extremely disturbed by the business. -In essence, over a period of time several ships had encountered "an enormous thing" at sea, a long spindle-shaped object, sometimes giving off a phosphorescent glow, infinitely bigger and faster than any whale. -The relevant data on this apparition, as recorded in various logbooks, agreed pretty closely as to the structure of the object or creature in question, its unprecedented speed of movement, its startling locomotive power, and the unique vitality with which it seemed to be gifted. If it was a cetacean, it exceeded in bulk any whale previously classified by science. No naturalist, neither Cuvier nor Lacépède, neither Professor Dumeril nor Professor de Quatrefages, would have accepted the existence of such a monster sight unseen -- specifically, unseen by their own scientific eyes. -Striking an average of observations taken at different times -- rejecting those timid estimates that gave the object a length of 200 feet, and ignoring those exaggerated views that saw it as a mile wide and three long--you could still assert that this phenomenal creature greatly exceeded the dimensions of anything then known to ichthyologists, if it existed at all. -Now then, it did exist, this was an undeniable fact; and since the human mind dotes on objects of wonder, you can understand the worldwide excitement caused by this unearthly apparition. As for relegating it to the realm of fiction, that charge had to be dropped. -In essence, on July 20, 1866, the steamer Governor Higginson, from the Calcutta & Burnach Steam Navigation Co., encountered this moving mass five miles off the eastern shores of Australia. Captain Baker at first thought he was in the presence of an unknown reef; he was even about to fix its exact position when two waterspouts shot out of this inexplicable object and sprang hissing into the air some 150 feet. So, unless this reef was subject to the intermittent eruptions of a geyser, the Governor Higginson had fair and honest dealings with some aquatic mammal, until then unknown, that could spurt from its blowholes waterspouts mixed with air and steam. -Similar events were likewise observed in Pacific seas, on July 23 of the same year, by the Christopher Columbus from the West India & Pacific Steam Navigation Co. Consequently, this extraordinary cetacean could transfer itself from one locality to another with startling swiftness, since within an interval of just three days, the Governor Higginson and the Christopher Columbus had observed it at two positions on the charts separated by a distance of more than 700 nautical leagues. -Fifteen days later and 2,000 leagues farther, the Helvetia from the Compagnie Nationale and the Shannon from the Royal Mail line, running on opposite tacks in that part of the Atlantic lying between the United States and Europe, respectively signaled each other that the monster had been sighted in latitude 42 degrees 15' north and longitude 60 degrees 35' west of the meridian of Greenwich. From their simultaneous observations, they were able to estimate the mammal's minimum length at more than 350 English feet; this was because both the Shannon and the Helvetia were of smaller dimensions, although each measured 100 meters stem to stern. Now then, the biggest whales, those rorqual whales that frequent the waterways of the Aleutian Islands, have never exceeded a length of 56 meters--if they reach even that. -One after another, reports arrived that would profoundly affect public opinion: new observations taken by the transatlantic liner Pereire, the Inman line's Etna running afoul of the monster, an official report drawn up by officers on the French frigate Normandy, dead-earnest reckonings obtained by the general staff of Commodore Fitz-James aboard the Lord Clyde. In lighthearted countries, people joked about this phenomenon, but such serious, practical countries as England, America, and Germany were deeply concerned. -In every big city the monster was the latest rage; they sang about it in the coffee houses, they ridiculed it in the newspapers, they dramatized it in the theaters. The tabloids found it a fine opportunity for hatching all sorts of hoaxes. In those newspapers short of copy, you saw the reappearance of every gigantic imaginary creature, from "Moby Dick," that dreadful white whale from the High Arctic regions, to the stupendous kraken whose tentacles could entwine a 500-ton craft and drag it into the ocean depths. They even reprinted reports from ancient times: the views of Aristotle and Pliny accepting the existence of such monsters, then the Norwegian stories of Bishop Pontoppidan, the narratives of Paul Egede, and finally the reports of Captain Harrington -- whose good faith is above suspicion--in which he claims he saw, while aboard the Castilian in 1857, one of those enormous serpents that, until then, had frequented only the seas of France's old extremist newspaper, The Constitutionalist. diff --git a/vendors/tcpdf/cache/chapter_demo_2.txt b/vendors/tcpdf/cache/chapter_demo_2.txt deleted file mode 100755 index 6f7165c7..00000000 --- a/vendors/tcpdf/cache/chapter_demo_2.txt +++ /dev/null @@ -1,23 +0,0 @@ -During the period in which these developments were occurring, I had returned from a scientific undertaking organized to explore the Nebraska badlands in the United States. In my capacity as Assistant Professor at the Paris Museum of Natural History, I had been attached to this expedition by the French government. After spending six months in Nebraska, I arrived in New York laden with valuable collections near the end of March. My departure for France was set for early May. In the meantime, then, I was busy classifying my mineralogical, botanical, and zoological treasures when that incident took place with the Scotia. -I was perfectly abreast of this question, which was the big news of the day, and how could I not have been? I had read and reread every American and European newspaper without being any farther along. This mystery puzzled me. Finding it impossible to form any views, I drifted from one extreme to the other. Something was out there, that much was certain, and any doubting Thomas was invited to place his finger on the Scotia's wound. -When I arrived in New York, the question was at the boiling point. The hypothesis of a drifting islet or an elusive reef, put forward by people not quite in their right minds, was completely eliminated. And indeed, unless this reef had an engine in its belly, how could it move about with such prodigious speed? -Also discredited was the idea of a floating hull or some other enormous wreckage, and again because of this speed of movement. -So only two possible solutions to the question were left, creating two very distinct groups of supporters: on one side, those favoring a monster of colossal strength; on the other, those favoring an "underwater boat" of tremendous motor power. -Now then, although the latter hypothesis was completely admissible, it couldn't stand up to inquiries conducted in both the New World and the Old. That a private individual had such a mechanism at his disposal was less than probable. Where and when had he built it, and how could he have built it in secret? -Only some government could own such an engine of destruction, and in these disaster-filled times, when men tax their ingenuity to build increasingly powerful aggressive weapons, it was possible that, unknown to the rest of the world, some nation could have been testing such a fearsome machine. The Chassepot rifle led to the torpedo, and the torpedo has led to this underwater battering ram, which in turn will lead to the world putting its foot down. At least I hope it will. -But this hypothesis of a war machine collapsed in the face of formal denials from the various governments. Since the public interest was at stake and transoceanic travel was suffering, the sincerity of these governments could not be doubted. Besides, how could the assembly of this underwater boat have escaped public notice? Keeping a secret under such circumstances would be difficult enough for an individual, and certainly impossible for a nation whose every move is under constant surveillance by rival powers. -So, after inquiries conducted in England, France, Russia, Prussia, Spain, Italy, America, and even Turkey, the hypothesis of an underwater Monitor was ultimately rejected. -After I arrived in New York, several people did me the honor of consulting me on the phenomenon in question. In France I had published a two-volume work, in quarto, entitled The Mysteries of the Great Ocean Depths. Well received in scholarly circles, this book had established me as a specialist in this pretty obscure field of natural history. My views were in demand. As long as I could deny the reality of the business, I confined myself to a flat "no comment." But soon, pinned to the wall, I had to explain myself straight out. And in this vein, "the honorable Pierre Aronnax, Professor at the Paris Museum," was summoned by The New York Herald to formulate his views no matter what. -I complied. Since I could no longer hold my tongue, I let it wag. I discussed the question in its every aspect, both political and scientific, and this is an excerpt from the well-padded article I published in the issue of April 30. - -"Therefore," I wrote, "after examining these different hypotheses one by one, we are forced, every other supposition having been refuted, to accept the existence of an extremely powerful marine animal. -"The deepest parts of the ocean are totally unknown to us. No soundings have been able to reach them. What goes on in those distant depths? What creatures inhabit, or could inhabit, those regions twelve or fifteen miles beneath the surface of the water? What is the constitution of these animals? It's almost beyond conjecture. -"However, the solution to this problem submitted to me can take the form of a choice between two alternatives. -"Either we know every variety of creature populating our planet, or we do not. -"If we do not know every one of them, if nature still keeps ichthyological secrets from us, nothing is more admissible than to accept the existence of fish or cetaceans of new species or even new genera, animals with a basically 'cast-iron' constitution that inhabit strata beyond the reach of our soundings, and which some development or other, an urge or a whim if you prefer, can bring to the upper level of the ocean for long intervals. -"If, on the other hand, we do know every living species, we must look for the animal in question among those marine creatures already cataloged, and in this event I would be inclined to accept the existence of a giant narwhale. -"The common narwhale, or sea unicorn, often reaches a length of sixty feet. Increase its dimensions fivefold or even tenfold, then give this cetacean a strength in proportion to its size while enlarging its offensive weapons, and you have the animal we're looking for. It would have the proportions determined by the officers of the Shannon, the instrument needed to perforate the Scotia, and the power to pierce a steamer's hull. -"In essence, the narwhale is armed with a sort of ivory sword, or lance, as certain naturalists have expressed it. It's a king-sized tooth as hard as steel. Some of these teeth have been found buried in the bodies of baleen whales, which the narwhale attacks with invariable success. Others have been wrenched, not without difficulty, from the undersides of vessels that narwhales have pierced clean through, as a gimlet pierces a wine barrel. The museum at the Faculty of Medicine in Paris owns one of these tusks with a length of 2.25 meters and a width at its base of forty-eight centimeters! -"All right then! Imagine this weapon to be ten times stronger and the animal ten times more powerful, launch it at a speed of twenty miles per hour, multiply its mass times its velocity, and you get just the collision we need to cause the specified catastrophe. -"So, until information becomes more abundant, I plump for a sea unicorn of colossal dimensions, no longer armed with a mere lance but with an actual spur, like ironclad frigates or those warships called 'rams,' whose mass and motor power it would possess simultaneously. -"This inexplicable phenomenon is thus explained away unless it's something else entirely, which, despite everything that has been sighted, studied, explored and experienced, is still possible!" diff --git a/vendors/tcpdf/cache/table_data_demo.txt b/vendors/tcpdf/cache/table_data_demo.txt deleted file mode 100755 index 5a48a42e..00000000 --- a/vendors/tcpdf/cache/table_data_demo.txt +++ /dev/null @@ -1,15 +0,0 @@ -Austria;Vienna;83859;8075 -Belgium;Brussels;30518;10192 -Denmark;Copenhagen;43094;5295 -Finland;Helsinki;304529;5147 -France;Paris;543965;58728 -Germany;Berlin;357022;82057 -Greece;Athens;131625;10511 -Ireland;Dublin;70723;3694 -Italy;Roma;301316;57563 -Luxembourg;Luxembourg;2586;424 -Netherlands;Amsterdam;41526;15654 -Portugal;Lisbon;91906;9957 -Spain;Madrid;504790;39348 -Sweden;Stockholm;410934;8839 -United Kingdom;London;243820;58862 diff --git a/vendors/tcpdf/cache/utf8test.txt b/vendors/tcpdf/cache/utf8test.txt deleted file mode 100755 index 27cddb1e..00000000 --- a/vendors/tcpdf/cache/utf8test.txt +++ /dev/null @@ -1,120 +0,0 @@ -Sentences that contain all letters commonly used in a language --------------------------------------------------------------- - -Markus Kuhn -- 2001-09-02 - -This file is UTF-8 encoded. - - -Danish (da) ---------- - - Quizdeltagerne spiste jordbær med fløde, mens cirkusklovnen - Wolther spillede på xylofon. - (= Quiz contestants were eating strawbery with cream while Wolther - the circus clown played on xylophone.) - -German (de) ------------ - - Falsches Üben von Xylophonmusik quält jeden größeren Zwerg - (= Wrongful practicing of xylophone music tortures every larger dwarf) - - Zwölf Boxkämpfer jagten Eva quer über den Sylter Deich - (= Twelve boxing fighters hunted Eva across the dike of Sylt) - - Heizölrückstoßabdämpfung - (= fuel oil recoil absorber) - (jqvwxy missing, but all non-ASCII letters in one word) - -English (en) ------------- - - The quick brown fox jumps over the lazy dog - -Spanish (es) ------------- - - El pingüino Wenceslao hizo kilómetros bajo exhaustiva lluvia y - frío, añoraba a su querido cachorro. - (Contains every letter and every accent, but not every combination - of vowel + acute.) - -French (fr) ------------ - - Portez ce vieux whisky au juge blond qui fume sur son île intérieure, à - côté de l'alcôve ovoïde, où les bûches se consument dans l'âtre, ce - qui lui permet de penser à la cænogenèse de l'être dont il est question - dans la cause ambiguë entendue à Moÿ, dans un capharnaüm qui, - pense-t-il, diminue çà et là la qualité de son œuvre. - - l'île exiguë - Où l'obèse jury mûr - Fête l'haï volapük, - Âne ex aéquo au whist, - Ôtez ce vœu déçu. - - Le cœur déçu mais l'âme plutôt naïve, Louÿs rêva de crapaüter en - canoë au delà des îles, près du mälström où brûlent les novæ. - -Irish Gaelic (ga) ------------------ - - D'fhuascail Íosa, Úrmhac na hÓighe Beannaithe, pór Éava agus Ádhaimh - -Hungarian (hu) --------------- - - Árvíztűrő tükörfúrógép - (= flood-proof mirror-drilling machine, only all non-ASCII letters) - -Icelandic (is) --------------- - - Kæmi ný öxi hér ykist þjófum nú bæði víl og ádrepa - - Sævör grét áðan því úlpan var ónýt - (some ASCII letters missing) - -Greek (el) -------------- - - Γαζέες καὶ μυρτιὲς δὲν θὰ βρῶ πιὰ στὸ χρυσαφὶ ξέφωτο - (= No more shall I see acacias or myrtles in the golden clearing) - - Ξεσκεπάζω τὴν ψυχοφθόρα βδελυγμία - (= I uncover the soul-destroying abhorrence) - -Hebrew (iw) ------------ - - ? דג סקרן שט בים מאוכזב ולפתע מצא לו חברה איך הקליטה - -Polish (pl) ------------ - - Pchnąć w tę łódź jeża lub ośm skrzyń fig - (= To push a hedgehog or eight bins of figs in this boat) - -Russian (ru) ------------- - - В чащах юга жил бы цитрус? Да, но фальшивый экземпляр! - (= Would a citrus live in the bushes of south? Yes, but only a fake one!) - -Thai (th) ---------- - - [--------------------------|------------------------] - ๏ เป็นมนุษย์สุดประเสริฐเลิศคุณค่า กว่าบรรดาฝูงสัตว์เดรัจฉาน - จงฝ่าฟันพัฒนาวิชาการ อย่าล้างผลาญฤๅเข่นฆ่าบีฑาใคร - ไม่ถือโทษโกรธแช่งซัดฮึดฮัดด่า หัดอภัยเหมือนกีฬาอัชฌาสัย - ปฏิบัติประพฤติกฎกำหนดใจ พูดจาให้จ๊ะๆ จ๋าๆ น่าฟังเอย ฯ - - [The copyright for the Thai example is owned by The Computer - Association of Thailand under the Royal Patronage of His Majesty the - King.] - -Please let me know if you find others! Special thanks to the people -from all over the world who contributed these sentences. diff --git a/views/jobs/edit.ctp b/views/jobs/edit.ctp index becba502..0cf28920 100644 --- a/views/jobs/edit.ctp +++ b/views/jobs/edit.ctp @@ -85,7 +85,7 @@ echo $form->input('date_scheduled_ex_works', array('type'=>'hidden')); echo $form->input('date_order_sent_to_customer', array('type'=>'hidden')); echo $form->input('customer_order_number'); - echo $form->input('domestic_freight_paid_by', array('type'=>'select', 'options'=>$freight_paid_options)); + echo $form->input('domestic_freight_paid_by', array('type'=>'select', 'options'=>$freight_paid_options, 'showEmpty'=>true)); echo $form->input('sale_category', array('type'=>'select', 'options'=>$sale_category_options)); echo $form->input('shipment_category', array('type'=>'select', 'options'=>$shipment_category_options)); echo $form->input('id');