/*
* -------
* :ATTRIBUTION NOTICE BEGINS
*
* The following JSMsg functions are:
*
* (C) Copyright 2002 - 2003, Creativyst, Inc.
* ALL RIGHTS RESERVED
*
* For more information go to:
* http://www.Creativyst.com
* or email:
* Support@Creativyst.com
*
* Licensed under the Open Software License version 1.1
*
* END ATTRIBUTION NOTICE:
* -------
* These functions are free software; you can redistribute
* them and/or modify them under the terms of the Open
* Software License (OSL) version 1.1 as published by
* the Open Source Initiative;
*
* This program is distributed in the hope that it will
* be useful, but WITHOUT ANY WARRANTY; without even the
* implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the Open Software License
* version 1.1 for more details.
*
* For the complete details of the Open Software License
* please visit the Open Source Initiative website.
*
*
*
* -------
* These functions are part of a shared convention.
* called JSMsg. Please see the JSMsg document
* for more details.
*
* www.creativyst.com/Doc/Std/JSMsg/JSMsg.htm
*
*
* -------------------------------------------
* Parts of this code were automatically
* generated and may contain copyrighted
* content from other sources as well.
* Such content may not be used without
* first obtaining explicit permissions
* from its source.
*
*
*/
function rss_JSMsg() {
this.Title = Array([this.ShortListSize]);
this.Desc = Array([this.ShortListSize]);
this.Attrib = Array([this.ShortListSize]);
this.Link = Array([this.ShortListSize]);
this.DateN = Array([this.ShortListSize]);
this.ShortListSize = 22;
this.BeenLoaded = 0;
this.dispNumb;
this.Msg = function(msgPart, msgOffset)
{
document.write( this.Get(msgPart, msgOffset) );
}
this.MsgDay = function(msgPart)
{
document.write( this.GetDay(msgPart) );
}
this.MsgN = function(msgPart, msgNumber)
{
document.write( this.GetN(msgPart, msgNumber) );
}
this.Get = function(msgPart, msgOffset)
{
if(!msgOffset) {
msgOffset = 0;
}
if(!this.BeenLoaded) {
this.BeenLoaded = 1;
dispNumb =
this.getRandInt(this.ShortListSize);
}
return( this.GetN(msgPart, (dispNumb + msgOffset)) );
}
this.GetDay = function(msgPart)
{
var d = new Date();
var x = d.getDate();
return( this.GetN(msgPart, x) );
}
this.GetN = function(msgPart, msgNumber)
{
var myTmp;
if(!msgPart) {
msgPart = "Body";
}
if(!msgNumber) {
msgNumber = 0;
}
if(msgNumber >= this.ShortListSize) {
msgNumber = msgNumber % this.ShortListSize;
}
if( this.ok(msgPart,"Type") ) {
return(this.Type[msgNumber]);
}
if( this.ok(msgPart,"Title") ) {
return(this.Title[msgNumber]);
}
if( this.ok(msgPart, "Desc Description Content") ) {
return(this.Desc[msgNumber]);
}
if( this.ok(msgPart,"Body") ) {
return(this.Body[msgNumber]);
}
if( this.ok(msgPart, "Attrib Attribute Source") ) {
return(this.Attrib[msgNumber]);
}
if( this.ok(msgPart, "Author") ) {
if(!this.Author[msgNumber]) {
return(this.Attrib[msgNumber]);
}
return(this.Author[msgNumber]);
}
if( this.ok(msgPart,"DayN Day2N Day") ) {
myTmp = this.DateN[msgNumber];
if(myTmp.length) {
myTmp = myTmp.substr(6,2);
if( this.ok(msgPart,"Day2N") ) {
return(myTmp);
}
if(myTmp.charAt(0) == "0") {
return(myTmp.substr(1,1))
}
return(myTmp);
}
}
if( this.ok(msgPart, "MonthN Month2N") ) {
myTmp = this.DateN[msgNumber];
if(myTmp.length) {
myTmp = myTmp.substr(4,2)
if( this.ok(msgPart,"Month2N") ) {
return(myTmp);
}
if(myTmp.charAt(0) == "0") {
return(myTmp.substr(1,1))
}
return(myTmp);
}
}
if( this.ok(msgPart, "Year2N Year4N YearN Year") ) {
if(this.DateN[msgNumber].length) {
if( this.ok(msgPart,"Year4N") ) {
return(this.DateN[msgNumber].substr(0,4));
}
return(this.DateN[msgNumber].substr(0,4));
}
}
if( this.ok(msgPart,"Link") ) {
return(this.Link[msgNumber]);
}
if( this.ok(msgPart,"LinkTitle") ) {
if(this.MetaMsg(msgPart,"Link") && this.MetaMsg(msgPart,"Title") ) {
if( !this.Link[msgNumber] ) {
return(this.Title[msgNumber]);
}
if( !this.Title[msgNumber] ) {
this.Title[msgNumber] = this.Link[msgNumber];
}
myTmp = '\n';
myTmp = myTmp + this.Title[msgNumber] + '\n';
return(myTmp);
}
if( this.MetaMsg(msgPart,"Title") ) {
return(this.Title[msgNumber]);
}
if( this.MetaMsg(msgPart,"Link") ) {
if( this.Link[msgNumber] ) {
myTmp = "\n";
myTmp = myTmp + this.Link[msgNumber] + "\n";
return(myTmp);
}
}
return("");
}
if( this.ok(msgPart,"Cat Category Subject") ) {
return(this.Cat[msgNumber]);
}
if( this.ok(msgPart,"Thumb") ) {
return(this.Thumb[msgNumber]);
}
if( this.ok(msgPart,"Alt") ) {
return(this.Alt[msgNumber]);
}
return("");
}
this.getRandInt = function(RandSz)
{
var t, t2, t3;
t = 0;
while(t < .000001) {
t = Math.random();
t = Math.abs(t);
}
t2 = t * 1000000;
t2 = Math.round(t2);
t3 = t2 % RandSz;
return(t3);
}
this.ok = function(a, b)
{
var t, t2;
if(!this.is(a,b)) {
return(0);
}
return(this.MetaMsg(a));
}
this.is = function(a, b)
{
var t, t2;
t = a + " ";
t2 = b + " ";
t2 = t2.toUpperCase();
t = t.toUpperCase();
if(t2.indexOf(t) == -1) {
return(0);
}
return(1);
}
this.MetaMsg = function(msgCmd)
{
if( this.is(msgCmd, "Title LinkTitle Desc Description Attrib Source Link LinkTitle DayN Day2N MonthN Month2N Year2N Year4N YearN Year ") ) {
return(1);
}
else if( this.is(msgCmd, "MetaCount") ) {
return(22);
}
else {
return(0);
}
}
}
rss = new rss_JSMsg();
/* how slow is the with statement */
with( rss ) {
Title[0] = "Italian Trade Commission/ICE and ANFAO to Host Special Eyewear Exhibition, Open to the Public, in NYC\'s Grand Central Terminal";
Desc[0] = "- A special, historical exhibition by the Italian Trade Commission-ICE and the Italian Optical Goods Manufacturers\' Association-ANFAO will be produced in New York City\'s famed Grand Central Terminal, beginning March 19 through March 24. The industry as well as consumers are invited to view the display in the landmark terminal\'s Vanderbilt Hall, organizers said. Titled "Eyewear from the Beginning to the Future: The history of eyeglasses from their invention in Italy to the latest trends," the exhibit...<br /><br />Vision Monday - Mon, 08 Mar 2010 00:00:00 +0100";
Attrib[0] = "Italian Trade Commission/ICE and ANFAO to Host Special Eyewear Exhibition, Open to the Public, in NYC\'s Grand Central Terminal- A special, historical exhibition by the Italian Trade Commission-ICE and the Italian Optical Goods Manufacturers\' Association-ANFAO will be produced in New York City\'s famed Grand Central Terminal, beginning March 19 through March 24. The industry as well as consumers are invited to view the display in the landmark terminal\'s Vanderbilt Hall, organizers said. Titled "Eyewear from the Beginning to the Future: The history of eyeglasses from their invention in Italy to the latest trends," the exhibit...<br /><br />Vision Monday - Mon, 08 Mar 2010 00:00:00 +0100http://www.visionmonday.com/Default.aspx?tabid=211&content_id=19710&category_id=103Vision MondayMon, 08 Mar 2010 00:00:00 +0100http://www.visionmonday.com/Default.aspx?tabid=211&content_id=19710&category_id=103";
Link[0] = "http://www.visionmonday.com/Default.aspx?tabid=211&content_id=19710&category_id=103";
DateN[0] = "20100308";
Title[1] = "Italian interiors show opens in Abu Dhabi";
Desc[1] = "The Italian Luxury Interiors 2010 targeting trade visitors and buyers from hospitality, real estate and design consultants, as well as consumers opened in Abu Dhabi recently. The exhibition, which opened on March 4 to Emirates Palace Hotel is ending today (March 6). The high-end furnishing sector remains in a growth mode, said Francesco Alfonsi, the UAE-based Italian Trade Commissioner. "The Middle East continues to show growth across many luxury segments including hotels, boats and yachts," he...<br /><br />Trade Arabia - Sat, 06 Mar 2010 00:00:00 +0100";
Attrib[1] = "Italian interiors show opens in Abu DhabiThe Italian Luxury Interiors 2010 targeting trade visitors and buyers from hospitality, real estate and design consultants, as well as consumers opened in Abu Dhabi recently. The exhibition, which opened on March 4 to Emirates Palace Hotel is ending today (March 6). The high-end furnishing sector remains in a growth mode, said Francesco Alfonsi, the UAE-based Italian Trade Commissioner. "The Middle East continues to show growth across many luxury segments including hotels, boats and yachts," he...<br /><br />Trade Arabia - Sat, 06 Mar 2010 00:00:00 +0100http://www.tradearabia.com/news/INT_175920.htmlTrade ArabiaSat, 06 Mar 2010 00:00:00 +0100http://www.tradearabia.com/news/INT_175920.html";
Link[1] = "http://www.tradearabia.com/news/INT_175920.html";
DateN[1] = "20100306";
Title[2] = "A tale of two Italys";
Desc[2] = "Why? Its recession-proof, copper-bottomed chic is one reason, yes, but an even stronger lure is its versatility and breadth. Ask a room full of people what "Italian style" means and their answers will be as extreme as the contrast between the ebulliently contemporary resin and chrome, and the deeply traditional gilt, wood and ceramics that are all displayed at this week\'s exhibition. Italy is the world\'s leading furniture exporter and second largest furniture manufacturer, according to Francesco...<br /><br />Abu Dhabi National - Fri, 05 Mar 2010 00:00:00 +0100";
Attrib[2] = "A tale of two ItalysWhy? Its recession-proof, copper-bottomed chic is one reason, yes, but an even stronger lure is its versatility and breadth. Ask a room full of people what "Italian style" means and their answers will be as extreme as the contrast between the ebulliently contemporary resin and chrome, and the deeply traditional gilt, wood and ceramics that are all displayed at this week\'s exhibition. Italy is the world\'s leading furniture exporter and second largest furniture manufacturer, according to Francesco...<br /><br />Abu Dhabi National - Fri, 05 Mar 2010 00:00:00 +0100http://www.thenational.ae/apps/pbcs.dll/article?AID=/20100306/HOUSE_HOME/703059946/1196/rssAbu Dhabi NationalFri, 05 Mar 2010 00:00:00 +0100http://www.thenational.ae/apps/pbcs.dll/article?AID=/20100306/HOUSE_HOME/703059946/1196/rss";
Link[2] = "http://www.thenational.ae/apps/pbcs.dll/article?AID=/20100306/HOUSE_HOME/703059946/1196/rss";
DateN[2] = "20100305";
Title[3] = "MoU to promote tourism";
Desc[3] = "Qatar and Italy yesterday signed a memorandum of understanding (MoU) for tourism co-operation between the two countries in Milan. Qatar Tourism Authority (QTA) chairman Ahmed Abdullah al-Nuaimi and Italian Tourism Minister Michela Vittoria Brambilla signed on behalf of their respective countries. The signing ceremony which was attended by QataraEuro(TM)s Ambassador to Italy Sultan Saad al-Mreikhei and a number of senior Italian officials, reflects the desire of the two sides to bolster bilateral...<br /><br />Gulf Times - Fri, 05 Mar 2010 00:00:00 +0100";
Attrib[3] = "MoU to promote tourismQatar and Italy yesterday signed a memorandum of understanding (MoU) for tourism co-operation between the two countries in Milan. Qatar Tourism Authority (QTA) chairman Ahmed Abdullah al-Nuaimi and Italian Tourism Minister Michela Vittoria Brambilla signed on behalf of their respective countries. The signing ceremony which was attended by QataraEuro(TM)s Ambassador to Italy Sultan Saad al-Mreikhei and a number of senior Italian officials, reflects the desire of the two sides to bolster bilateral...<br /><br />Gulf Times - Fri, 05 Mar 2010 00:00:00 +0100http://www.gulf-times.com/site/topics/article.asp?cu_no=2&item_no=346912&version=1&template_id=36&parent_id=16Gulf TimesFri, 05 Mar 2010 00:00:00 +0100http://www.gulf-times.com/site/topics/article.asp?cu_no=2&item_no=346912&version=1&template_id=36&parent_id=16";
Link[3] = "http://www.gulf-times.com/site/topics/article.asp?cu_no=2&item_no=346912&version=1&template_id=36&parent_id=16";
DateN[3] = "20100305";
Title[4] = "Natural gas pipeline deal put on paper";
Desc[4] = "EUROKINISSI Greece, Bulgaria and Italy yesterday signed the agreements for the establishment of the companies to undertake the planning, construction and operation of the Greek-Bulgarian natural gas pipeline IGB which will link the Greek town of Komotini with the Bulgarian one of Stara Zagora. The agreements were signed in the presence of Greece\'s Environment and Energy Minister Tina Birbili (third from left), Bulgaria\'s Economy and Energy Minister Traicho Traikov (second left) and Italy\'s Deputy...<br /><br />EKathimerini.com - Fri, 05 Mar 2010 00:00:00 +0100";
Attrib[4] = "Natural gas pipeline deal put on paperEUROKINISSI Greece, Bulgaria and Italy yesterday signed the agreements for the establishment of the companies to undertake the planning, construction and operation of the Greek-Bulgarian natural gas pipeline IGB which will link the Greek town of Komotini with the Bulgarian one of Stara Zagora. The agreements were signed in the presence of Greece\'s Environment and Energy Minister Tina Birbili (third from left), Bulgaria\'s Economy and Energy Minister Traicho Traikov (second left) and Italy\'s Deputy...<br /><br />EKathimerini.com - Fri, 05 Mar 2010 00:00:00 +0100http://www.ekathimerini.com/4dcgi/_w_articles_economy_1_05/03/2010_115375EKathimerini.comFri, 05 Mar 2010 00:00:00 +0100http://www.ekathimerini.com/4dcgi/_w_articles_economy_1_05/03/2010_115375";
Link[4] = "http://www.ekathimerini.com/4dcgi/_w_articles_economy_1_05/03/2010_115375";
DateN[4] = "20100305";
Title[5] = "Malta - a base for Italian business";
Desc[5] = "The Embassy of Malta in Italy took part in a commercial seminar, co-organised in Treviso with Malta Enterprise and the Treviso-based Studio Lorenzo and Treviso Glocal. More than 70 Italian entrepreneurs attended the seminar, which discussed the theme Malta: Una Risposta Concreta Ai Bisogni Commerciali, Finanziari e Fiscali. Speakers highlighted the opportunities and incentives prevailing in Malta for prospective investors in the different economic sectors. A number of one-to-one meetings were held...<br /><br />Malta Independent, The - Fri, 05 Mar 2010 00:00:00 +0100";
Attrib[5] = "Malta - a base for Italian businessThe Embassy of Malta in Italy took part in a commercial seminar, co-organised in Treviso with Malta Enterprise and the Treviso-based Studio Lorenzo and Treviso Glocal. More than 70 Italian entrepreneurs attended the seminar, which discussed the theme Malta: Una Risposta Concreta Ai Bisogni Commerciali, Finanziari e Fiscali. Speakers highlighted the opportunities and incentives prevailing in Malta for prospective investors in the different economic sectors. A number of one-to-one meetings were held...<br /><br />Malta Independent, The - Fri, 05 Mar 2010 00:00:00 +0100http://www.independent.com.mt/news.asp?newsitemid=102560Malta Independent, TheFri, 05 Mar 2010 00:00:00 +0100http://www.independent.com.mt/news.asp?newsitemid=102560";
Link[5] = "http://www.independent.com.mt/news.asp?newsitemid=102560";
DateN[5] = "20100305";
Title[6] = "Asia:Italian textile machinery once again major factor at ITMA + CITME";
Desc[6] = "Just a few months away from the next ITMA ASIA + CITME to be held in Shanghai from June 22 to 26, Italy\'s leadership position among textile machinery technology suppliers is highlighted by the high number of Italian manufacturers exhibiting at the event. 110 Italian exhibitors will be in attendance at ITMA ASIA + CITME 2010, occupying an overall exhibition space of some 3800 sq. m. Of these exhibitors, 66 will be presenting their products as part of the National Sector Group, organized by ACIMIT...<br /><br />Fibre2fashion.com - Thu, 04 Mar 2010 00:00:00 +0100";
Attrib[6] = "Asia:Italian textile machinery once again major factor at ITMA + CITMEJust a few months away from the next ITMA ASIA + CITME to be held in Shanghai from June 22 to 26, Italy\'s leadership position among textile machinery technology suppliers is highlighted by the high number of Italian manufacturers exhibiting at the event. 110 Italian exhibitors will be in attendance at ITMA ASIA + CITME 2010, occupying an overall exhibition space of some 3800 sq. m. Of these exhibitors, 66 will be presenting their products as part of the National Sector Group, organized by ACIMIT...<br /><br />Fibre2fashion.com - Thu, 04 Mar 2010 00:00:00 +0100http://www.fibre2fashion.com/news/textile-news/newsdetails.aspx?news_id=82986Fibre2fashion.comThu, 04 Mar 2010 00:00:00 +0100http://www.fibre2fashion.com/news/textile-news/newsdetails.aspx?news_id=82986";
Link[6] = "http://www.fibre2fashion.com/news/textile-news/newsdetails.aspx?news_id=82986";
DateN[6] = "20100304";
Title[7] = "Italian companies betting big on Indian core sectors";
Desc[7] = "Mumbai: Italy has long been a favourite with Indians, be it for its popular brands ranging from cars to coffee, or its captivating locales that promise to captivate Indian travellers. Both countries are now betting on this overwhelming acceptance to create investment opportunities for each other in sectors like infrastructure, environment and renewable energy, food processing and tourism. According to the statistics collated by The Indo Italian Chamber of Commerce & Industry, Italian investments...<br /><br />Financial Express, The - India - Thu, 04 Mar 2010 00:00:00 +0100";
Attrib[7] = "Italian companies betting big on Indian core sectorsMumbai: Italy has long been a favourite with Indians, be it for its popular brands ranging from cars to coffee, or its captivating locales that promise to captivate Indian travellers. Both countries are now betting on this overwhelming acceptance to create investment opportunities for each other in sectors like infrastructure, environment and renewable energy, food processing and tourism. According to the statistics collated by The Indo Italian Chamber of Commerce & Industry, Italian investments...<br /><br />Financial Express, The - India - Thu, 04 Mar 2010 00:00:00 +0100http://www.financialexpress.com/news/Italian-companies-betting-big-on-Indian-core-sectors/587032/Financial Express, The - IndiaThu, 04 Mar 2010 00:00:00 +0100http://www.financialexpress.com/news/Italian-companies-betting-big-on-Indian-core-sectors/587032/";
Link[7] = "http://www.financialexpress.com/news/Italian-companies-betting-big-on-Indian-core-sectors/587032/";
DateN[7] = "20100304";
Title[8] = "Turkish And Italian Companies To Cooperate";
Desc[8] = "Thursday, 4 March 2010 Representatives of several Italian and Turkish companies gathered in the western province of Izmir on Thursday. The companies discussed opportunities of cooperation in agriculture and stockbreeding sectors during the meeting which was organized by Izmir Italian Chamber of Commerce and Italian Ravenna Chamber of Commerce. Members of five companies from Ravenna city of Italy as well as 24 Turkish companies both from Izmir and other cities discussed cooperation opportunities...<br /><br />Turkish Weekly - Thu, 04 Mar 2010 00:00:00 +0100";
Attrib[8] = "Turkish And Italian Companies To CooperateThursday, 4 March 2010 Representatives of several Italian and Turkish companies gathered in the western province of Izmir on Thursday. The companies discussed opportunities of cooperation in agriculture and stockbreeding sectors during the meeting which was organized by Izmir Italian Chamber of Commerce and Italian Ravenna Chamber of Commerce. Members of five companies from Ravenna city of Italy as well as 24 Turkish companies both from Izmir and other cities discussed cooperation opportunities...<br /><br />Turkish Weekly - Thu, 04 Mar 2010 00:00:00 +0100http://www.turkishweekly.net/news/98867/turkish-and-italian-companies-to-cooperate.htmlTurkish WeeklyThu, 04 Mar 2010 00:00:00 +0100http://www.turkishweekly.net/news/98867/turkish-and-italian-companies-to-cooperate.html";
Link[8] = "http://www.turkishweekly.net/news/98867/turkish-and-italian-companies-to-cooperate.html";
DateN[8] = "20100304";
Title[9] = "Vogue Italia and Marchon Launch New Collaboration";
Desc[9] = "MILAN-In a special collaboration, launching this week just prior to the start of MIDO, the Italian eyewear exhibition here, Vogue Italia\'s editor-in-chief, Franca Sozzani, art directed a special seven-page section on Marchon Eyewear, Inc. kicking off a series of events and high-visibility partnerships during the show and in the Italian market. The section features designer brands including Fendi, Jil Sander, Emilio Pucci, Karl Lagerfeld, Michael Kors, Calvin Klein Collection and Nike. "When we re-crafted...<br /><br />Vision Monday - Thu, 04 Mar 2010 00:00:00 +0100";
Attrib[9] = "Vogue Italia and Marchon Launch New CollaborationMILAN-In a special collaboration, launching this week just prior to the start of MIDO, the Italian eyewear exhibition here, Vogue Italia\'s editor-in-chief, Franca Sozzani, art directed a special seven-page section on Marchon Eyewear, Inc. kicking off a series of events and high-visibility partnerships during the show and in the Italian market. The section features designer brands including Fendi, Jil Sander, Emilio Pucci, Karl Lagerfeld, Michael Kors, Calvin Klein Collection and Nike. "When we re-crafted...<br /><br />Vision Monday - Thu, 04 Mar 2010 00:00:00 +0100http://www.visionmonday.com/Default.aspx?tabid=211&content_id=19680&category_id=103Vision MondayThu, 04 Mar 2010 00:00:00 +0100http://www.visionmonday.com/Default.aspx?tabid=211&content_id=19680&category_id=103";
Link[9] = "http://www.visionmonday.com/Default.aspx?tabid=211&content_id=19680&category_id=103";
DateN[9] = "20100304";
Title[10] = "Italy to showcase "Rome Experience" at Shanghai Expo";
Desc[10] = "Special Report:Shanghai Expo 2010 >> Italy\'s capital will showcase the lifestyle of its people at the Shanghai 2010 World Expo, local official Francesco Maria Orsi told Xinhua in a recent interview. With its theme of "The Rome Experience," the events and projects to be staged by Rome have a double goal: promoting Rome\'s image on the international stage and opening up opportunities for Roman firms wanting to do business in China, said Orsi, mayor Gianni Alemanno\'s delegate for the Expo. "Rome has...<br /><br />English Eastday - Wed, 03 Mar 2010 00:00:00 +0100";
Attrib[10] = "Italy to showcase "Rome Experience" at Shanghai ExpoSpecial Report:Shanghai Expo 2010 >> Italy\'s capital will showcase the lifestyle of its people at the Shanghai 2010 World Expo, local official Francesco Maria Orsi told Xinhua in a recent interview. With its theme of "The Rome Experience," the events and projects to be staged by Rome have a double goal: promoting Rome\'s image on the international stage and opening up opportunities for Roman firms wanting to do business in China, said Orsi, mayor Gianni Alemanno\'s delegate for the Expo. "Rome has...<br /><br />English Eastday - Wed, 03 Mar 2010 00:00:00 +0100http://english.eastday.com/e/100303/u1a5055752.htmlEnglish EastdayWed, 03 Mar 2010 00:00:00 +0100http://english.eastday.com/e/100303/u1a5055752.html";
Link[10] = "http://english.eastday.com/e/100303/u1a5055752.html";
DateN[10] = "20100303";
Title[11] = "Italians Part of Succession of Four Business Delegations";
Desc[11] = "The group met with Tadesse Haile, state minister for Trade and Industry. This group was interested in supplying medium size solar energy technologies to Ethiopia. In addition, Franco Frattini, the Italian Foreign Minister, paid a visit to Ethiopia and attended the inauguration of the Gilgel Gibe II Hydroelectric Plant, just a little over a month ago. The 14th ACITF, organised by the metropolitan chamber, was opened last Thursday, February 25, 2010, by Girma Birru. Trade and Industry minister. The...<br /><br />AllAfrica - Tue, 02 Mar 2010 00:00:00 +0100";
Attrib[11] = "Italians Part of Succession of Four Business DelegationsThe group met with Tadesse Haile, state minister for Trade and Industry. This group was interested in supplying medium size solar energy technologies to Ethiopia. In addition, Franco Frattini, the Italian Foreign Minister, paid a visit to Ethiopia and attended the inauguration of the Gilgel Gibe II Hydroelectric Plant, just a little over a month ago. The 14th ACITF, organised by the metropolitan chamber, was opened last Thursday, February 25, 2010, by Girma Birru. Trade and Industry minister. The...<br /><br />AllAfrica - Tue, 02 Mar 2010 00:00:00 +0100http://allafrica.com/stories/201003020475.htmlAllAfricaTue, 02 Mar 2010 00:00:00 +0100http://allafrica.com/stories/201003020475.html";
Link[11] = "http://allafrica.com/stories/201003020475.html";
DateN[11] = "20100302";
Title[12] = "LyondellBasell looks to close polypropylene factory in Italy";
Desc[12] = "LyondellBasell\'s senior vice president for olefins and polyolefins, Europe, Asia and International, Aton de Vries explained that the current demand would be met by the company\'s other plants in Ferrara and Brindisi. "We expect to be able to meet projected customer demand for polypropylene (including local customers in Terni) with product supplied from our other facilities in Italy," he said. The Terni plant has approximately 120 permanent employees and the company is in consultation with their representatives...<br /><br />Cosmetics Design Europe - Tue, 02 Mar 2010 00:00:00 +0100";
Attrib[12] = "LyondellBasell looks to close polypropylene factory in ItalyLyondellBasell\'s senior vice president for olefins and polyolefins, Europe, Asia and International, Aton de Vries explained that the current demand would be met by the company\'s other plants in Ferrara and Brindisi. "We expect to be able to meet projected customer demand for polypropylene (including local customers in Terni) with product supplied from our other facilities in Italy," he said. The Terni plant has approximately 120 permanent employees and the company is in consultation with their representatives...<br /><br />Cosmetics Design Europe - Tue, 02 Mar 2010 00:00:00 +0100http://www.cosmeticsdesign-europe.com/Packaging-Design/LyondellBasell-looks-to-close-polypropylene-factory-in-ItalyCosmetics Design EuropeTue, 02 Mar 2010 00:00:00 +0100http://www.cosmeticsdesign-europe.com/Packaging-Design/LyondellBasell-looks-to-close-polypropylene-factory-in-Italy";
Link[12] = "http://www.cosmeticsdesign-europe.com/Packaging-Design/LyondellBasell-looks-to-close-polypropylene-factory-in-Italy";
DateN[12] = "20100302";
Title[13] = "Italian design specialist, Marco Piva to offer a glimpse of the future";
Desc[13] = "come from the old\', using the DNA of Italy\'s world-renowned design heritage. Fancesco Alfonsi, the UAE-based Italian Trade Commissioner who is behind the three-day interactive exhibition in the capital (March 4-6 2010), said: " We have invited Piva to be a part of this event to throw the spotlight on the Italian heritage and vision in design and architecture to the UAE community." He said that Piva is a designer with a broad spectrum of influence, across community master plans to chairs. "Piva has...<br /><br />Pr-Inside - Mon, 01 Mar 2010 00:00:00 +0100";
Attrib[13] = "Italian design specialist, Marco Piva to offer a glimpse of the futurecome from the old\', using the DNA of Italy\'s world-renowned design heritage. Fancesco Alfonsi, the UAE-based Italian Trade Commissioner who is behind the three-day interactive exhibition in the capital (March 4-6 2010), said: " We have invited Piva to be a part of this event to throw the spotlight on the Italian heritage and vision in design and architecture to the UAE community." He said that Piva is a designer with a broad spectrum of influence, across community master plans to chairs. "Piva has...<br /><br />Pr-Inside - Mon, 01 Mar 2010 00:00:00 +0100http://www.pr-inside.com/italian-design-specialist-marco-piva-r1747389.htmPr-InsideMon, 01 Mar 2010 00:00:00 +0100http://www.pr-inside.com/italian-design-specialist-marco-piva-r1747389.htm";
Link[13] = "http://www.pr-inside.com/italian-design-specialist-marco-piva-r1747389.htm";
DateN[13] = "20100301";
Title[14] = "Italy. Seatec promotes eco-sustainability";
Desc[14] = "The marine world is particularly sensitive to the environment and looks at the aspects related to eco-sustainability in depth, so much so that Seatec, in addition to presenting products and systems that fit into the context of environmental protection, hosted various events and reserved a large exhibition areas for this theme. "Open motor boats, maximum length eight metres, with particular attention to low environmental impact in their layout and choice of propeller..." is the theme of the design...<br /><br />Bymnews.com - Fri, 26 Feb 2010 00:00:00 +0100";
Attrib[14] = "Italy. Seatec promotes eco-sustainabilityThe marine world is particularly sensitive to the environment and looks at the aspects related to eco-sustainability in depth, so much so that Seatec, in addition to presenting products and systems that fit into the context of environmental protection, hosted various events and reserved a large exhibition areas for this theme. "Open motor boats, maximum length eight metres, with particular attention to low environmental impact in their layout and choice of propeller..." is the theme of the design...<br /><br />Bymnews.com - Fri, 26 Feb 2010 00:00:00 +0100http://www.bymnews.com/news/newsDetails.php?id=66202Bymnews.comFri, 26 Feb 2010 00:00:00 +0100http://www.bymnews.com/news/newsDetails.php?id=66202";
Link[14] = "http://www.bymnews.com/news/newsDetails.php?id=66202";
DateN[14] = "20100226";
Title[15] = "Exports of Italian products to China grow";
Desc[15] = "The exports of made-in-Italy traditional products to China will be strongly supported by the rising Chinese middle class, the Shanghai Daily reported, citing Umberto Vattani, president of the Italian Institute for Foreign Trade as saying. Italian exports to China are the only ones to have increased in 2009 thanks to an 8% rise in Chinese consumer demand. China\'s increasing consumer demand represents a great opportunity for Italian firms specializing in products with a high-quality appeal. Traditional...<br /><br />Hong Kong Trade Development Council - Fri, 26 Feb 2010 00:00:00 +0100";
Attrib[15] = "Exports of Italian products to China growThe exports of made-in-Italy traditional products to China will be strongly supported by the rising Chinese middle class, the Shanghai Daily reported, citing Umberto Vattani, president of the Italian Institute for Foreign Trade as saying. Italian exports to China are the only ones to have increased in 2009 thanks to an 8% rise in Chinese consumer demand. China\'s increasing consumer demand represents a great opportunity for Italian firms specializing in products with a high-quality appeal. Traditional...<br /><br />Hong Kong Trade Development Council - Fri, 26 Feb 2010 00:00:00 +0100http://www.hktdc.com/info/vp/a/intmk/en/1/3/1/1X06OC4W/Exports-Of-Italian-Products-To-China-Grow.htmHong Kong Trade Development CouncilFri, 26 Feb 2010 00:00:00 +0100http://www.hktdc.com/info/vp/a/intmk/en/1/3/1/1X06OC4W/Exports-Of-Italian-Products-To-China-Grow.htm";
Link[15] = "http://www.hktdc.com/info/vp/a/intmk/en/1/3/1/1X06OC4W/Exports-Of-Italian-Products-To-China-Grow.htm";
DateN[15] = "20100226";
Title[16] = "Economic Mediterranean Forum stresses upgrading production";
Desc[16] = "(MENAFN - Jordan Times) "We want to prevent the Mediterranean area from being a mere place of consumption," Rome Mayor Gianni Alemanno told the II Economic Mediterranean Forum which convened in the Italian capital on Thursday. Inaugurating the forum, which is providing a platform for Mediterranean economists, industrialists, traders and entrepreneurs to discuss means to increase cooperation among them, Alemanno stressed the need to develop the production of knowledge and goods so as not to be surpassed...<br /><br />MENAFN - Fri, 26 Feb 2010 00:00:00 +0100";
Attrib[16] = "Economic Mediterranean Forum stresses upgrading production(MENAFN - Jordan Times) "We want to prevent the Mediterranean area from being a mere place of consumption," Rome Mayor Gianni Alemanno told the II Economic Mediterranean Forum which convened in the Italian capital on Thursday. Inaugurating the forum, which is providing a platform for Mediterranean economists, industrialists, traders and entrepreneurs to discuss means to increase cooperation among them, Alemanno stressed the need to develop the production of knowledge and goods so as not to be surpassed...<br /><br />MENAFN - Fri, 26 Feb 2010 00:00:00 +0100http://www.menafn.com/qn_news_story_s.asp?StoryId=1093308744MENAFNFri, 26 Feb 2010 00:00:00 +0100http://www.menafn.com/qn_news_story_s.asp?StoryId=1093308744";
Link[16] = "http://www.menafn.com/qn_news_story_s.asp?StoryId=1093308744";
DateN[16] = "20100226";
Title[17] = "600.000 Euros for the 2010 Best Business Ideas in Nanotechnology and Polymer-Based Materials";
Desc[17] = "Veneto Nanotech, the Italian cluster of nanotechnology, is launching the sixth edition of Nanochallenge and Polymerchallenge, an internation business plan competition aiming at funding startups in nanotechnology with a Grand Prize of 300.000 euro. The competition is coorganized by IMAST that offers 300.000 euro for the best business idea based on a new polymer-based materials technology. The competition is open to teams of at least two people that must submit their business proposal by the end of...<br /><br />Azonano - Thu, 25 Feb 2010 00:00:00 +0100";
Attrib[17] = "600.000 Euros for the 2010 Best Business Ideas in Nanotechnology and Polymer-Based MaterialsVeneto Nanotech, the Italian cluster of nanotechnology, is launching the sixth edition of Nanochallenge and Polymerchallenge, an internation business plan competition aiming at funding startups in nanotechnology with a Grand Prize of 300.000 euro. The competition is coorganized by IMAST that offers 300.000 euro for the best business idea based on a new polymer-based materials technology. The competition is open to teams of at least two people that must submit their business proposal by the end of...<br /><br />Azonano - Thu, 25 Feb 2010 00:00:00 +0100http://www.azonano.com/news.asp?newsID=16163AzonanoThu, 25 Feb 2010 00:00:00 +0100http://www.azonano.com/news.asp?newsID=16163";
Link[17] = "http://www.azonano.com/news.asp?newsID=16163";
DateN[17] = "20100225";
Title[18] = "Italian Machine Tool Technology Awards - February 2010";
Desc[18] = "The Italian Trade Commission has awarded six U.S. college students a two-week trip to Italy, March 13-27, to visit top machine tool companies, and participate in an advanced international engineering program offered at Politecnic University-Milan, Italy. CHICAGO, Ill. DEARBORN, Mich. - We are pleased to announce the winners of the Third Italian Machine Tool Technology Awards (IMTTA). They are: Benjamin Rainwater and Andrew Kaufman at the University of Arkansas, Fayetteville, Ark.; Jacob Davis and...<br /><br />Industrial News Room - Wed, 24 Feb 2010 00:00:00 +0100";
Attrib[18] = "Italian Machine Tool Technology Awards - February 2010The Italian Trade Commission has awarded six U.S. college students a two-week trip to Italy, March 13-27, to visit top machine tool companies, and participate in an advanced international engineering program offered at Politecnic University-Milan, Italy. CHICAGO, Ill. DEARBORN, Mich. - We are pleased to announce the winners of the Third Italian Machine Tool Technology Awards (IMTTA). They are: Benjamin Rainwater and Andrew Kaufman at the University of Arkansas, Fayetteville, Ark.; Jacob Davis and...<br /><br />Industrial News Room - Wed, 24 Feb 2010 00:00:00 +0100http://news.thomasnet.com/companystory/573600Industrial News RoomWed, 24 Feb 2010 00:00:00 +0100http://news.thomasnet.com/companystory/573600";
Link[18] = "http://news.thomasnet.com/companystory/573600";
DateN[18] = "20100224";
Title[19] = "New gourmet show to launch in Dubai";
Desc[19] = "The first trade exhibition in the Middle East dedicated to providing exclusive, high-end food products sourced from all over the world will launch in Dubai in October this year, said a top official of Dubai World Trade Centre. "The Middle East has a very refined culture and visitors from all over the world come to Dubai in particular for the best culinary delights," said Trixee Loh, senior vice president, Dubai World Trade Centre, organisers of the event. "We recognise the market demand from our...<br /><br />Trade Arabia - Wed, 24 Feb 2010 00:00:00 +0100";
Attrib[19] = "New gourmet show to launch in DubaiThe first trade exhibition in the Middle East dedicated to providing exclusive, high-end food products sourced from all over the world will launch in Dubai in October this year, said a top official of Dubai World Trade Centre. "The Middle East has a very refined culture and visitors from all over the world come to Dubai in particular for the best culinary delights," said Trixee Loh, senior vice president, Dubai World Trade Centre, organisers of the event. "We recognise the market demand from our...<br /><br />Trade Arabia - Wed, 24 Feb 2010 00:00:00 +0100http://www.tradearabia.com/news/FOOD_175456.htmlTrade ArabiaWed, 24 Feb 2010 00:00:00 +0100http://www.tradearabia.com/news/FOOD_175456.html";
Link[19] = "http://www.tradearabia.com/news/FOOD_175456.html";
DateN[19] = "20100224";
Title[20] = "Romanian-Italian agreement on cooperation in milk processing industry";
Desc[20] = "A Romanian-Italian agreement on cooperation in milk processing industry will be signed on Tuesday, February 23, during the Forum of the Consumer Goods Industry, which is held in Bucharest, informs the Eurolink Foundation. The agreement aims at substantially revitalizing Romanian milk production and distribution nationwide, using the experience of the European Union in the field and the opportunity of the European funds. The two partners are the Consorzio Latte Pecorino Romano, Italy (the consortium...<br /><br />ACT Media - Tue, 23 Feb 2010 00:00:00 +0100";
Attrib[20] = "Romanian-Italian agreement on cooperation in milk processing industryA Romanian-Italian agreement on cooperation in milk processing industry will be signed on Tuesday, February 23, during the Forum of the Consumer Goods Industry, which is held in Bucharest, informs the Eurolink Foundation. The agreement aims at substantially revitalizing Romanian milk production and distribution nationwide, using the experience of the European Union in the field and the opportunity of the European funds. The two partners are the Consorzio Latte Pecorino Romano, Italy (the consortium...<br /><br />ACT Media - Tue, 23 Feb 2010 00:00:00 +0100http://www.actmedia.eu/2010/02/23/top+story/romanian-italian+agreement+on+cooperation+in+milk+processing+industry+/25815ACT MediaTue, 23 Feb 2010 00:00:00 +0100http://www.actmedia.eu/2010/02/23/top+story/romanian-italian+agreement+on+cooperation+in+milk+processing+industry+/25815";
Link[20] = "http://www.actmedia.eu/2010/02/23/top+story/romanian-italian+agreement+on+cooperation+in+milk+processing+industry+/25815";
DateN[20] = "20100223";
Title[21] = "Italy & Middle East. Aicon announces partnership with Sailing Plus in Lebanon";
Desc[21] = "Aicon S.p.A., the Group from Messina which operates in the design, construction and sale of pleasure craft and luxury motor yachts, has finalized a new dealership agreement for the commercialization of Aicon branded motoryachts and megayachts with Sailing Plus in the Middle East area and, precisely, in Lebanon. The agreement signed with one of the most important companies in the Middle East nautical field, is part of the plan of geographical expansion of the distribution network in order to extend...<br /><br />Bymnews.com - Tue, 23 Feb 2010 00:00:00 +0100";
Attrib[21] = "Italy & Middle East. Aicon announces partnership with Sailing Plus in LebanonAicon S.p.A., the Group from Messina which operates in the design, construction and sale of pleasure craft and luxury motor yachts, has finalized a new dealership agreement for the commercialization of Aicon branded motoryachts and megayachts with Sailing Plus in the Middle East area and, precisely, in Lebanon. The agreement signed with one of the most important companies in the Middle East nautical field, is part of the plan of geographical expansion of the distribution network in order to extend...<br /><br />Bymnews.com - Tue, 23 Feb 2010 00:00:00 +0100http://www.bymnews.com/news/newsDetails.php?id=66053Bymnews.comTue, 23 Feb 2010 00:00:00 +0100http://www.bymnews.com/news/newsDetails.php?id=66053";
Link[21] = "http://www.bymnews.com/news/newsDetails.php?id=66053";
DateN[21] = "20100223";
} // end with block
headtitle='eXtrapola.com - Italtrade Online press review';