/*
* -------
* :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 = 5;
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(5);
}
else {
return(0);
}
}
}
rss = new rss_JSMsg();
/* how slow is the with statement */
with( rss ) {
Title[0] = "ITPO Leather fair opens in Chennai amidst recovery in exports";
Desc[0] = "Economic Times, The - Sun, 31 Jan 2010 00:00:00 +0100";
Attrib[0] = "- ITPO Leather fair opens in Chennai amidst recovery in exportsEconomic Times, The - Sun, 31 Jan 2010 00:00:00 +0100http://economictimes.indiatimes.com/news/news-by-industry/et-cetera/ITPO-Leather-fair-opens-in-Chennai-amidst-recovery-in-exports/articleshow/5520772.cmsEconomic Times, TheSun, 31 Jan 2010 00:00:00 +0100http://economictimes.indiatimes.com/news/news-by-industry/et-cetera/ITPO-Leather-fair-opens-in-Chennai-amidst-recovery-in-exports/articleshow/5520772.cms";
Link[0] = "http://economictimes.indiatimes.com/news/news-by-industry/et-cetera/ITPO-Leather-fair-opens-in-Chennai-amidst-recovery-in-exports/articleshow/5520772.cms";
DateN[0] = "20100131";
Title[1] = "Advisory Board "2015: Women and Expo": an Initiative to Promote Women\'s Development in the World, Davos, 29 January 2010";
Desc[1] = "Cincinnati Business Journal - Fri, 29 Jan 2010 00:00:00 +0100";
Attrib[1] = "
- Advisory Board "2015: Women and Expo": an Initiative to Promote Women\'s Development in the World, Davos, 29 January 2010Cincinnati Business Journal - Fri, 29 Jan 2010 00:00:00 +0100http://cincinnati.bizjournals.com/cincinnati/prnewswire/press_releases/national/Italy/2010/01/29/UKF008Cincinnati Business JournalFri, 29 Jan 2010 00:00:00 +0100http://cincinnati.bizjournals.com/cincinnati/prnewswire/press_releases/national/Italy/2010/01/29/UKF008";
Link[1] = "http://cincinnati.bizjournals.com/cincinnati/prnewswire/press_releases/national/Italy/2010/01/29/UKF008";
DateN[1] = "20100129";
Title[2] = "Italy Agribusiness Report Q2 2009 - new market research report";
Desc[2] = "M2 - Fri, 29 Jan 2010 00:00:00 +0100";
Attrib[2] = "
- Italy Agribusiness Report Q2 2009 - new market research reportM2 - Fri, 29 Jan 2010 00:00:00 +0100http://www.m2.com/m2/web/story.php/20106690D6068275015B802576BA00409D59/text/M2PWM2Fri, 29 Jan 2010 00:00:00 +0100http://www.m2.com/m2/web/story.php/20106690D6068275015B802576BA00409D59/text/M2PW";
Link[2] = "http://www.m2.com/m2/web/story.php/20106690D6068275015B802576BA00409D59/text/M2PW";
DateN[2] = "20100129";
Title[3] = "Libya: Italian Businesses Optimistic, Climate Has Changed";
Desc[3] = "Newsvine - Thu, 28 Jan 2010 00:00:00 +0100";
Attrib[3] = "
- Libya: Italian Businesses Optimistic, Climate Has ChangedNewsvine - Thu, 28 Jan 2010 00:00:00 +0100http://trk-alwn.newsvine.com/_news/2010/01/28/3820971-libya-italian-businesses-optimistic-climate-has-changed-NewsvineThu, 28 Jan 2010 00:00:00 +0100http://trk-alwn.newsvine.com/_news/2010/01/28/3820971-libya-italian-businesses-optimistic-climate-has-changed-";
Link[3] = "http://trk-alwn.newsvine.com/_news/2010/01/28/3820971-libya-italian-businesses-optimistic-climate-has-changed-";
DateN[3] = "20100128";
Title[4] = "Italy:Brazil is growing market for technical textiles & nonwovens sector";
Desc[4] = "Fibre2fashion.com - Wed, 27 Jan 2010 00:00:00 +0100";
Attrib[4] = "
- Italy:Brazil is growing market for technical textiles & nonwovens sectorFibre2fashion.com - Wed, 27 Jan 2010 00:00:00 +0100http://www.fibre2fashion.com/news/textile-news/newsdetails.aspx?news_id=81649Fibre2fashion.comWed, 27 Jan 2010 00:00:00 +0100http://www.fibre2fashion.com/news/textile-news/newsdetails.aspx?news_id=81649";
Link[4] = "http://www.fibre2fashion.com/news/textile-news/newsdetails.aspx?news_id=81649";
DateN[4] = "20100127";
} // end with block
headtitle='eXtrapola.com - Italtrade Online press review';