document.write()
var isDOM = (document.getElementById ? true : false); 
var isIE4 = ((document.all && !isDOM) ? true : false);
var isNS4 = (document.layers ? true : false);
function getRef(id) {
if (isDOM) return document.getElementById(id);
if (isIE4) return document.all[id];
if (isNS4) return document.layers[id];
}
function getSty(id) {
return (isNS4 ? getRef(id) : getRef(id).style);
} 
// Hide timeout.
var popTimer = 0;
// Array showing highlighted menu items.
var litNow = new Array();
function popOver(menuNum, itemNum) {
clearTimeout(popTimer);
hideAllBut(menuNum);
litNow = getTree(menuNum, itemNum);
changeCol(litNow, true);
targetNum = menu[menuNum][itemNum].target;
if (targetNum > 0) {
thisX = parseInt(menu[menuNum][0].ref.left) + parseInt(menu[menuNum][itemNum].ref.left);
thisY = parseInt(menu[menuNum][0].ref.top) + parseInt(menu[menuNum][itemNum].ref.top);
with (menu[targetNum][0].ref) {
left = parseInt(thisX + menu[targetNum][0].x);
top = parseInt(thisY + menu[targetNum][0].y);
visibility = 'visible';
      }
   }
}
function popOut(menuNum, itemNum) {
if ((menuNum == 0) && !menu[menuNum][itemNum].target)
hideAllBut(0)
else
popTimer = setTimeout('hideAllBut(0)', 500);
}
function getTree(menuNum, itemNum) {

// Array index is the menu number. The contents are null (if that menu is not a parent)
// or the item number in that menu that is an ancestor (to light it up).
itemArray = new Array(menu.length);

while(1) {
itemArray[menuNum] = itemNum;
// If we've reached the top of the hierarchy, return.
if (menuNum == 0) return itemArray;
itemNum = menu[menuNum][0].parentItem;
menuNum = menu[menuNum][0].parentMenu;
   }
}

// Pass an array and a boolean to specify colour change, true = over colour.
function changeCol(changeArray, isOver) {
for (menuCount = 0; menuCount < changeArray.length; menuCount++) {
if (changeArray[menuCount]) {
newCol = isOver ? menu[menuCount][0].overCol : menu[menuCount][0].backCol;
// Change the colours of the div/layer background.
with (menu[menuCount][changeArray[menuCount]].ref) {
if (isNS4) bgColor = newCol;
else backgroundColor = newCol;
         }
      }
   }
}
function hideAllBut(menuNum) {
var keepMenus = getTree(menuNum, 1);
for (count = 0; count < menu.length; count++)
if (!keepMenus[count])
menu[count][0].ref.visibility = 'hidden';
changeCol(litNow, false);
}

// *** MENU CONSTRUCTION FUNCTIONS ***

function Menu(isVert, popInd, x, y, width, overCol, backCol, borderClass, textClass) {
// True or false - a vertical menu?
this.isVert = isVert;
// The popout indicator used (if any) for this menu.
this.popInd = popInd
// Position and size settings.
this.x = x;
this.y = y;
this.width = width;

this.overCol = overCol;
this.backCol = backCol;

this.borderClass = borderClass;
this.textClass = textClass;

this.parentMenu = null;
this.parentItem = null;

this.ref = null;
}

function Item(text, href, frame, length, spacing, target) {
this.text = text;
this.href = href;
this.frame = frame;
this.length = length;
this.spacing = spacing;
this.target = target;

this.ref = null;
}

function writeMenus() {
if (!isDOM && !isIE4 && !isNS4) return;

for (currMenu = 0; currMenu < menu.length; currMenu++) with (menu[currMenu][0]) {

var str = '', itemX = 0, itemY = 0;

for (currItem = 1; currItem < menu[currMenu].length; currItem++) with (menu[currMenu][currItem]) {
var itemID = 'menu' + currMenu + 'item' + currItem;


var w = (isVert ? width : length);
var h = (isVert ? length : width);

if (isDOM || isIE4) {
str += '<div id="' + itemID + '" style="position: absolute; left: ' + itemX + '; top: ' + itemY + '; width: ' + w + '; height: ' + h + '; visibility: inherit; ';
if (backCol) str += 'background: ' + backCol + '; ';
str += '" ';
}
if (isNS4) {
str += '<layer id="' + itemID + '" left="' + itemX + '" top="' + itemY + '" width="' +  w + '" height="' + h + '" visibility="inherit" ';
if (backCol) str += 'bgcolor="' + backCol + '" ';
}
if (borderClass) str += 'class="' + borderClass + '" ';


str += 'onMouseOver="popOver(' + currMenu + ',' + currItem + ')" onMouseOut="popOut(' + currMenu + ',' + currItem + ')">';


str += '<table width="' + (w - 8) + '" border="0" cellspacing="0" cellpadding="' + (!isNS4 && borderClass ? 3 : 0) + '"><tr><td align="left" height="' + (h - 7) + '">' + '<a class="' + textClass + '" href="' + href + '"' + (frame ? ' target="' + frame + '">' : '>') + text + '</a></td>';
if (target > 0) {


menu[target][0].parentMenu = currMenu;
menu[target][0].parentItem = currItem;


if (popInd) str += '<td class="' + textClass + '" align="right">' + popInd + '</td>';
}
str += '</tr></table>' + (isNS4 ? '</layer>' : '</div>');
if (isVert) itemY += length + spacing;
else itemX += length + spacing;
}
if (isDOM) {
var newDiv = document.createElement('div');
document.getElementsByTagName('body').item(0).appendChild(newDiv);
newDiv.innerHTML = str;
ref = newDiv.style;
ref.position = 'absolute';
ref.visibility = 'hidden';
}


if (isIE4) {
document.body.insertAdjacentHTML('beforeEnd', '<div id="menu' + currMenu + 'div" ' + 'style="position: absolute; visibility: hidden">' + str + '</div>');
ref = getSty('menu' + currMenu + 'div');
}


if (isNS4) {
ref = new Layer(0);
ref.document.write(str);
ref.document.close();
}

for (currItem = 1; currItem < menu[currMenu].length; currItem++) {
itemName = 'menu' + currMenu + 'item' + currItem;
if (isDOM || isIE4) menu[currMenu][currItem].ref = getSty(itemName);
if (isNS4) menu[currMenu][currItem].ref = ref.document[itemName];
   }
}
with(menu[0][0]) {
ref.left = x;
ref.top = y;
ref.visibility = 'visible';
   }
}

var menu = new Array();

var defOver = '#000080', defBack = '#003366';


var defLength = 18;


menu[0] = new Array();


menu[0][0] = new Menu(false, '', 187, 190, 14, '#FFFFFF', '#D5EBFA', 'crazyborder1', 'crazyText1');




menu[0][1] = new Item('  Earning/ Dividend Release', '#', '', 161, 2, 1);
menu[0][2] = new Item('  Corporate Watch', '#', '', 107, 2, 2);
menu[0][3] = new Item('  Sports', '#', '', 40, 2, 3);

// Earning/ Dividend Release menu.
menu[1] = new Array();
// The File menu is positioned 0px across and 22 down from its trigger, and is 80 wide.
// All text in this menu has the stylesheet class 'item' -- see the <style> section above.
// We've passed a 'greater-than' sign '>' as a popout indicator. Try an image...?
menu[1][0] = new Menu(true, '', 0, 24, 200, defOver, defBack, 'itemBorder', 'itemtext');
menu[1][1] = new Item('Chemplast Sanmar Q1 of FY 2010 - 11', '#', '', defLength, 0, 145);
menu[1][2] = new Item('Chemplast Sanmar Q4 of FY 2009 - 10', '#', '', defLength, 0, 140);
menu[1][3] = new Item('Chemplast Sanmar Q3 of FY 2009 - 10', '#', '', defLength, 0, 139);
menu[1][4] = new Item('Chemplast Sanmar Q2 of FY 2009 - 10', '#', '', defLength, 0, 138);
menu[1][5] = new Item('Chemplast Sanmar Q1 of FY 2009 - 10', '#', '', defLength, 0, 123);
menu[1][6] = new Item('Chemplast Sanmar Q4 of FY 2008 - 09', '#', '', defLength, 0, 122);
menu[1][7] = new Item('Chemplast Sanmar Q3 of FY 2008 - 09', '#', '', defLength, 0, 121);
menu[1][8] = new Item('Chemplast Sanmar Q2 of FY 2008 - 09', '#', '', defLength, 0, 120);
menu[1][9] = new Item('Chemplast Sanmar Q1 of FY 2008 - 09', '#', '', defLength, 0, 119);
menu[1][10] = new Item('Chemplast Sanmar Q4 of FY 2007 - 08', '#', '', defLength, 0, 114);
menu[1][11] = new Item('Chemplast Sanmar Q3 of FY 2007 - 08', '#', '', defLength, 0, 113);
menu[1][12] = new Item('Chemplast Sanmar Q2 of FY 2007 - 08', '#', '', defLength, 0, 112);
menu[1][13] = new Item('Chemplast Sanmar Q1 of FY 2007 - 08', '#', '', defLength, 0, 109);
menu[1][14] = new Item('Chemplast Sanmar Q4 of FY 2006 - 07', '#', '', defLength, 0, 106);
menu[1][15] = new Item('Chemplast Sanmar Q3 of FY 2006 - 07', '#', '', defLength, 0, 84);
menu[1][16] = new Item('Chemplast Sanmar Q2 of FY 2006 - 07', '#', '', defLength, 0, 82);
menu[1][17] = new Item('Chemplast Sanmar Q1 of FY 2006 - 07', '#', '', defLength, 0, 80);
menu[1][18] = new Item('Chemplast Sanmar Q4 of FY 2005 - 06', '#', '', defLength, 0, 78);
menu[1][19] = new Item('Chemplast Sanmar Q3 of FY 2005 - 06', '#', '', defLength, 0, 77);
menu[1][20] = new Item('Chemplast Sanmar Q2 of FY 2005 - 06', '#', '', defLength, 0, 76);
menu[1][21] = new Item('Chemplast Sanmar Q1 of FY 2005 - 06', '#', '', defLength, 0, 70);
menu[1][22] = new Item('Chemplast Sanmar Q4 of FY 2004 - 05', '#', '', defLength, 0, 69);
menu[1][23] = new Item('Chemplast Sanmar Q3 of FY 2004 - 05', '#', '', defLength, 0, 60);
menu[1][24] = new Item('Chemplast Sanmar Q2 of FY 2004 - 05', '#', '', defLength, 0, 59);
menu[1][25] = new Item('Chemplast Sanmar Q1 of FY 2004 - 05', '#', '', defLength, 0, 58);
menu[1][26] = new Item('Chemplast Sanmar Q4 of FY 2003 - 04', '#', '', defLength, 0, 57);
menu[1][27] = new Item('Sanmar Properties Q3 of FY 2003 - 04', '#', '', defLength, 0, 55);
menu[1][28] = new Item('Chemplast Sanmar Q3 of FY 2003 - 04', '#', '', defLength, 0, 54);
menu[1][29] = new Item('Sanmar Properties Q2 of FY 2003 - 04', '#', '', defLength, 0, 45);
menu[1][30] = new Item('Chemplast Sanmar Q2 of FY 2003 - 04', '#', '', defLength, 0, 44);
menu[1][31] = new Item('Sanmar Properties Q1 of FY 2003 - 04', '#', '', defLength, 0, 43);
menu[1][32] = new Item('Chemplast Sanmar Q1 of FY 2003 - 04', '#', '', defLength, 0, 42);
menu[1][33] = new Item('Sanmar Properties Q4 of FY 2002 - 03', '#', '', defLength, 0, 40);
menu[1][34] = new Item('Chemplast Sanmar Q4 of FY 2002 - 03', '#', '', defLength, 0, 39);
menu[1][35] = new Item('Sanmar Properties Q3 of FY 2002 - 03', '#', '', defLength, 0, 38);
menu[1][36] = new Item('Chemplast Sanmar Q3 of FY 2002 - 03', '#', '', defLength, 0, 37);
menu[1][37] = new Item('Sanmar Properties Q2 of FY 2002 - 03', '#', '', defLength, 0, 36);
menu[1][38] = new Item('Chemplast Sanmar Q2 of FY 2002 - 03', '#', '', defLength, 0, 35);
menu[1][39] = new Item('Sanmar Properties Q1 of FY 2002 - 03', '#', '', defLength, 0, 34);
menu[1][40] = new Item('Chemplast Sanmar Q1 of FY 2002 - 03', '#', '', defLength, 0, 33);
menu[1][41] = new Item('Sanmar Properties Q4 of FY 2001 - 02', '#', '', defLength, 0, 31);
menu[1][42] = new Item('Chemplast Sanmar Q4 of FY 2001 - 02', '#', '', defLength, 0, 32);
menu[1][43] = new Item('Sanmar Properties Q3 of FY 2001 - 02', '#', '', defLength, 0, 30);
menu[1][44] = new Item('Chemplast Sanmar Q3 of FY 2001 - 02', '#', '', defLength, 0, 24);
menu[1][45] = new Item('Chemplast Sanmar Q2 of FY 2001 - 02', '#', '', defLength, 0, 23);
menu[1][46] = new Item('Chemplast Sanmar Q1 of FY 2001 - 02', '#', '', defLength, 0, 4);

 
//Corporate Watch menu.
menu[2] = new Array();
menu[2][0] = new Menu(true, '', -40, 24, 280, defOver, defBack, 'itemBorder', 'itemText');
menu[2][1] = new Item('AIMA-Sanmar', '#', '_self', defLength, 0, 143);
menu[2][2] = new Item('IACC-Sanmar', '#', '_self', defLength, 0, 144);
menu[2][3] = new Item('CSL Cuddalore plant', '#', '_self', defLength, 0, 136);
menu[2][4] = new Item('Visit of Egyptian Minister', '#', '_self', defLength, 0, 141);
menu[2][5] = new Item('Pacific Valves inaugurated', '#', '_self', defLength, 0, 137);
menu[2][6] = new Item('Intec Polymers divested', '#', '_self', defLength, 0, 135);
menu[2][7] = new Item('TCI Sanmar', '#', '_self', defLength, 0, 134);
menu[2][8] = new Item('USD 868 million world scale VCM/PVC facilities at Port Said', '#', '_self', defLength, 0, 142);
menu[2][9] = new Item('Water tank', '#', '_self', defLength, 0, 133);
menu[2][10] = new Item('Matrix Metals acquisition', '#', '_self', defLength, 0, 132);
menu[2][11] = new Item('Chemplast Sanmar rights issue', '#', '_self', defLength, 0, 131);
menu[2][12] = new Item('AIMA-Sanmar Management quiz', '#', '_self', defLength, 0, 130);
menu[2][13] = new Item('Zero liquid discharge', '#', '_self', defLength, 0, 129);
menu[2][14] = new Item('Sanmar Group to sell stake in India Cements', '#', '_self', defLength, 0, 128);
menu[2][15] = new Item('CSL to raise Rs.110 croe debt', '#', '_self', defLength, 0, 127);
menu[2][16] = new Item('Sanmar Group acquires Eisenwerk Erla', '#', '_self', defLength, 0, 126);
menu[2][17] = new Item('Flowserve Corp receives IACC-Sanmar award', '#', '_self', defLength, 0, 125);
menu[2][18] = new Item('IACC-Sanmar Indo-US Business Cooperation award', '#', '_self', defLength, 0, 124);
menu[2][19] = new Item('Chemplast - Zero Liquid Discharge', '#', '_self', defLength, 0, 118);
menu[2][20] = new Item('Strict Pollution contol implementation at CSL factory', '#', '_self', defLength, 0, 117);
menu[2][21] = new Item('CSR Release', '#', '_self', defLength, 0, 115);
menu[2][22] = new Item('Drinking water', '#', '_self', defLength, 0, 116);
menu[2][23] = new Item('Donation for school girl - Easwari', '#', '_self', defLength, 0, 111);
menu[2][24] = new Item('Press Meet', '#', '_self', defLength, 0, 107);
menu[2][25] = new Item('IACC Sanmar Indo-US Business Co-operation Award', '#', '_self', defLength, 0, 108);
menu[2][26] = new Item('Quizzing around', '#', '_self', defLength, 0, 91);
menu[2][27] = new Item('Fisherfolks resilience commended', '#', '_self', defLength, 0, 110);
menu[2][28] = new Item('Sports Day at Madhuram Narayanan centre', '#', '_self', defLength, 0, 92);
menu[2][29] = new Item('Actavis acquires SSCLs API unit', '#', '_self', defLength, 0, 93);
menu[2][30] = new Item('Actavis buys Sanmars API facility', '#', '_self', defLength, 0, 94);
menu[2][31] = new Item('Actavis buys API division in India', '#', '_self', defLength, 0, 95);
menu[2][32] = new Item('MMA-Sanmar award for young managers', '#', '_self', defLength, 0, 105);
menu[2][33] = new Item('Sankara School tops at science meet', '#', '_self', defLength, 0, 96);
menu[2][34] = new Item('Award for young managers', '#', '_self', defLength, 0, 97);
menu[2][35] = new Item('Chemplast to spend Rs 100 cr at Mettur unit', '#', '_self', defLength, 0, 98);
menu[2][36] = new Item('Chemplast to spend Rs 75 cr on making Mettur plant eco-friendly', '#', '_self', defLength, 0, 99);
menu[2][37] = new Item('Chemplasts Rs 100-cr green management', '#', '_self', defLength, 0, 100);
menu[2][38] = new Item('Chemplast Sanmars ecofriendly initiative', '#', '_self', defLength, 0, 101);
menu[2][39] = new Item('Chemplast Sanmar on Rs 100 crore green initiative corporate Bureau', '#', '_self', defLength, 0, 102);
menu[2][40] = new Item('US firm to help Rs 100 cr plan', '#', '_self', defLength, 0, 103);
menu[2][41] = new Item('Chemplast Sanmars eco-friendly initiative', '#', '_self', defLength, 0, 104);
menu[2][42] = new Item('Namakku Naame Scheme - Chemplast gesture', '#', '_self', defLength, 0, 90);
menu[2][43] = new Item('Sruti gets a makeover', '#', '_self', defLength, 0, 89);
menu[2][44] = new Item('Centre for Exceptional children celebrates anniversary', '#', '_self', defLength, 0, 88);
menu[2][45] = new Item('N Kumar at NIT-T Convocation', '#', '_self', defLength, 0, 87);
menu[2][46] = new Item('Technology, skills can take India places', '#', '_self', defLength, 0, 86);
menu[2][47] = new Item('N Kumar at NIT-T Convocation', '#', '_self', defLength, 0, 85);
menu[2][48] = new Item('Private sector urged to implement disability Act', '#', '_self', defLength, 0, 83);
menu[2][49] = new Item('Chemplast Sanmar aquires PVC pipes Biz', '#', '_self', defLength, 0, 81);
menu[2][50] = new Item('Galapagos signs pact with Indus Biosciences', '#', '_self', defLength, 0, 79);
menu[2][51] = new Item('Madhuram Narayanan Centre’s work lauded', '#', '_self', defLength, 0, 75);
menu[2][52] = new Item('EVKS for uniform taxation', '#', '_self', defLength, 0, 74);
menu[2][53] = new Item('All States will follow uniform taxation system: Elangovan', '#', '_self', defLength, 0, 73);
menu[2][54] = new Item('Relaxing right', '#', '_self', defLength, 0, 72);
menu[2][55] = new Item('Anil-controlled AMP Sanmar new force on insurance turf', '#', '_self', defLength, 0, 71);
menu[2][56] = new Item('Wild peacock chase!', '#', '_self', defLength, 0, 67);
menu[2][57] = new Item('Chemplast Sanmar duo wins Business Line Quiz', '#', '_self', defLength, 1, 66);
menu[2][58] = new Item('Sanmar group exits joint venture with Dragoco', '#', '', defLength, 0, 56);
menu[2][59] = new Item('Sanmar group stake up in Chemplast Sanmar', '#', '_self', defLength, 1, 65);
menu[2][60] = new Item('Create demand', '#', '_self', defLength, 1, 64);
menu[2][61] = new Item('Sanmar buys Genei venture', '#', '', defLength, 0, 53);
menu[2][62] = new Item('Sanmar group acquires biotech firm', '#', '', defLength, 0, 52);
menu[2][63] = new Item('Sanmar Enters Biotech Segment With BGPL Stake Buy', '#', '', defLength, 0, 51);
menu[2][64] = new Item('Sanmar Speciality acquires Bangalore Genei', '#', '', defLength, 0, 50);
menu[2][65] = new Item('Sanmar To Set Up BPO Uuit', '#', '', defLength, 0, 49);
menu[2][66] = new Item('Commercialise research work on larger scale, IITs told', '#', '', defLength, 0, 48);
menu[2][67] = new Item('Chemplast plans', '#', '', defLength, 0, 47);
menu[2][68] = new Item('AMP Sanmar to help in rural job generation', '#', '_self', defLength, 1, 63);
menu[2][69] = new Item('Chemplast to demerge shipping business', '#', '_self', defLength, 1, 62);
menu[2][70] = new Item('The secret of joint ventures that work', '#', '_self', defLength, 1, 61);
menu[2][71] = new Item('Sanmar hopeful of record profit', '#', '_self', defLength, 1, 28);
menu[2][72] = new Item('JVs should be based on transparency', '#', '_self', defLength, 1, 27);
menu[2][73] = new Item('Promoters up Chemplast stake', '#', '_self', defLength, 1, 26);
menu[2][74] = new Item('AMP Sanmar launch', '#', '_self', defLength, 1, 29);
menu[2][75] = new Item('Chemplast Sanmar profits zoom', '#', '_self', defLength, 1, 25);
menu[2][76] = new Item('Bayer stake in Bayer Sanmar 100%', 'bayer100.htm', '_self', defLength, 1, 0);
menu[2][77] = new Item('Nod for greenfield PVC project', '#', '', defLength, 1, 13);
menu[2][78] = new Item(' SEC - Silver Jubilee Celebrations', '#', '', defLength, 1, 14);
menu[2][79] = new Item('Sanmar - AMP insurance tieup', '#', '', defLength, 1, 12);
menu[2][80] = new Item('A success story', '#', '', defLength, 1, 15);
menu[2][81] = new Item('Sanmar gives reins to pros', '#', '', defLength, 1, 16);
menu[2][82] = new Item('SSCL averts major disaster', '#', '', defLength, 1, 17);

// Sports menu
menu[3] = new Array();
menu[3][0] = new Menu(true, '', 0, 24, 220, defOver, defBack, 'itemBorder', 'itemText');
menu[3][1] = new Item('Memorable comeback by Balaji', '#', '', defLength, 0, 68);
menu[3][2] = new Item('Chempast still swears by cricket', '#', '', defLength, 0, 46);
menu[3][3] = new Item('MAC-TNCA First Division championship', '#', '', defLength, 0, 41);
menu[3][4] = new Item('Chemplast lifts Coromandel Cement Trophy', '#', '', defLength, 0, 18);
menu[3][5] = new Item('Rovers retain the Palayampatti Shield', '#', '', defLength, 0, 19);
menu[3][6] = new Item('Chemplast lifts Moin-ud-Dowla cup', '#', '', defLength, 0, 20);
menu[3][7] = new Item('Jolly Rovers regains title', '#', '', defLength, 0, 21);
menu[3][8] = new Item('TNTA felicitates Paes, Bhupathi', '#', '', defLength, 0,22);

//  menu no 4
menu[4] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[4][0] = new Menu(true, '', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[4][1] = new Item('Unaudited financial results', 'CPQ1FY02.htm', '_self', 20, 2, 0);
menu[4][2] = new Item('Business Line - Jul 27, 2001', 'CBLJ2702.htm', '_self', 20, 7, 0);

//  menu no 5
menu[5] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[5][0] = new Menu(true, '', 260, 7, 200, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[5][1] = new Item('Audited financial results', 'newcor32.htm', '_self', 20, 2, 0);
menu[5][2] = new Item('Business Line - Jun 26, 2001', 'newcor17.htm', '_self', 20, 7, 0);

//  menu no 6
menu[6] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[6][0] = new Menu(true, '>', 260, 7, 200, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[6][1] = new Item('Unaudited financial results', 'newcor9.htm', '_self', 20, 2, 0);
//menu[6][2] = new Item('Financial Express - Jul 27, 2001', '#', '', 20, 7, 0);

//  menu no 7
menu[7] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[7][0] = new Menu(true, '>', 260, 7, 200, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[7][1] = new Item('Unaudited financial results', 'newcor7.htm', '_self', 20, 2, 0);
menu[7][2] = new Item('The Hindu - Nov 2, 2000', 'newcor8.htm', '_self', 20, 7, 0);

//  menu no 8
menu[8] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[8][0] = new Menu(true, '>', 260, 7, 200, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[8][1] = new Item('Unaudited financial results', 'chempr2.htm', '_self', 20, 2, 0);
menu[8][2] = new Item('Financial Express - Jul 22, 2001', 'newrep5.htm', '_self', 20, 7, 0);

//  menu no 9
menu[9] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[9][0] = new Menu(true, '>', 260, 7, 200, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[9][1] = new Item('Unaudited financial results', 'audi2000.htm', '_self', 20, 2, 0);
menu[9][2] = new Item('Business Line - May 19, 2000', 'newrep2.htm', '_self', 20, 2, 0);
menu[9][3] = new Item('Economic Times - May 19, 2000', 'newrep1.htm', '_self', 20, 7, 0);

//  menu no 10
menu[10] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[10][0] = new Menu(true, '>', 260, 7, 200, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[10][1] = new Item('Business Standard - Apr 1, 2000', 'newrep3.htm', '_self', 20, 2, 0);


//  menu no 11
menu[11] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[11][0] = new Menu(true, '>', 260, -47, 200, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[11][1] = new Item('Unaudited financial results', 'chempress.htm', '_self', 20, 2, 0);
menu[11][2] = new Item('The Hindu - Jan 28, 2000', 'newspc.htm', '_self', 20, 2, 0);
menu[11][3] = new Item('Economic Times - Jan 28, 2000', 'newspc1.htm', '_self', 20, 7, 0);

//  menu no 12
menu[12] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[12][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[12][1] = new Item('Business Line - May 15, 2001', 'S-AMPtie.htm', '_self', 20, 2, 0);

//  menu no 13
menu[13] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[13][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[13][1] = new Item('Financial Express - Jul 13, 2001', 'NodFEJ01.htm', '_self', 20, 2, 0);


//  menu no 14
menu[14] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[14][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[14][1] = new Item('Snapshots from SEC - Silver Jubilee Celebrations', 'secSJC1.htm', '_self', 20, 2, 0);
menu[14][2] = new Item('Trinity Mirror - Jul 4, 2001', 'SECTMJ01.htm', '_self', 20, 2, 0);
menu[14][3] = new Item('The Hindu - Jul 3, 2001', 'SECTHJ01.htm', '_self', 20, 2, 0);
menu[14][4] = new Item('Business Standard - Jul 3, 2001', 'SECBSJ01.htm', '_self', 20, 2, 0);
menu[14][5] = new Item('News Today - Jul 3, 2001', 'SECNTJ01.htm', '_self', 20, 2, 0);

menu[14][6] = new Item('Indian Express - Jul 2, 2001', 'SECIEJ01.htm', '_self', 20, 2, 0);
menu[14][7] = new Item('News Today - Jul 1, 2001', 'SECNT201.htm', '_self', 20, 2, 0);
menu[14][8] = new Item('Financial Express - Jul 1, 2001', 'SECFEJ01.htm', '_self', 20, 2, 0);
menu[14][9] = new Item('The Hindu - Jul 1, 2001', 'SECTH201.htm', '_self', 20, 2, 0);
menu[14][10] = new Item('Economic Times - Jul 1, 2001', 'SECETJ01.htm', '_self', 20, 2, 0);
menu[14][11] = new Item('The Hindu - Jun 30, 2001', 'SECTH301.htm', '_self', 20, 2, 0);
menu[14][12] = new Item('Trinity Mirror - Jun 30, 2001', 'SECTM201.htm', '_self', 20, 2, 0);
menu[14][13] = new Item('Business Line - Jun 30, 2001', 'SECBLJ01.htm', '_self', 20, 2, 0);
menu[14][14] = new Item('Economic Times - Jun 29, 2001', 'SECET201.htm', '_self', 20, 2, 0);
menu[14][15] = new Item('Financial Express - Jun 13, 2001', 'SECFE201.htm', '_self', 20, 2, 0);

//  menu no 15
menu[15] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[15][0] = new Menu(true, '<', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[15][1] = new Item('The Hindu - Feb 1, 2001', 'success.htm', '_self', 20, 2, 0);


//  menu no 16
menu[16] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[16][0] = new Menu(true, '<', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[16][1] = new Item('Business India - Sep 4-17, 2000 ', 'reinBISe.htm', '_self', 20, 2, 0);
menu[16][2] = new Item('The Hindu - Aug 30, 2000', 'reinTHAu.htm', '_self', 20, 2, 0);
menu[16][3] = new Item('Economic Times - Aug 30, 2000 ', 'reinETA1.htm', '_self', 20, 2, 0);
menu[16][4] = new Item('Economic Times - Aug 15, 2000 ', 'reinETA2.htm', '_self', 20, 2, 0);

//  menu no 17
menu[17] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[17][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[17][1] = new Item('Midday Mumbai- Mar 23, 2000 ', 'SSCLaver.htm', '_self', 20, 2, 0);

//  menu no 18
menu[18] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[18][0] = new Menu(true, '>', -175, 7, 175, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[18][1] = new Item('The Hindu - Aug 16, 2001', 'coromand.htm', '_self', 20, 2, 0);




//  menu no 19
menu[19] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[19][0] = new Menu(true, '>', -175, 7, 175, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[19][1] = new Item('The Hindu - Apr 12, 2001 ', 'Palayam1.htm', '_self', 20, 2, 0);
menu[19][2] = new Item('Indian Express - Apr 12, 2001', 'Palayam2.htm', '_self', 20, 7, 0);

//  menu no 20
menu[20] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[20][0] = new Menu(true, '>', -155, 7, 155, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[20][1] = new Item('The Hindu - Sep 12, 2000 ', 'MoinTHS1.htm', '_self', 20, 2, 0);


//  menu no 21
menu[21] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[21][0] = new Menu(true, '>', -155, 7, 155, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[21][1] = new Item('The Hindu - Jun 12, 2000 ', 'jollyTH1.htm', '_self', 20, 2, 0);


//  menu no 22
menu[22] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[22][0] = new Menu(true, '>', -155, 7, 155, '#000080', '#003366', 'crazyBorder', 'crazyText');

menu[22][1] = new Item('The Hindu - Jan 20, 2000 ', 'TNTAPaes.htm', '_self', 20, 2, 0);


//  menu no 23
menu[23] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[23][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[23][1] = new Item('Audited financial results', 'CPQ2FY02.htm', '_self', 20, 2, 0);
menu[23][2] = new Item('Business Line - Nov 29, 2001', 'CBLN2902.htm', '_self', 20, 7, 0);

//  menu no 24
menu[24] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[24][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[24][1] = new Item('Unaudited financial results', 'CPQ3FY02.htm', '_self', 20, 2, 0);
menu[24][2] = new Item('Financial Express - Jan 30, 2002', 'CFEJ3002.htm', '_self', 20, 7, 0);

//  menu no 25
menu[25] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[25][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[25][1] = new Item('Business Line - Dec 24, 2001', 'CSLBLD02.htm', '_self', 20, 2, 0);

//  menu no 26
menu[26] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[26][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[26][1] = new Item('Financial Express - Jan 30, 2002', 'profin02.htm', '_self', 20, 2, 0);

//  menu no 27
menu[27] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[27][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[27][1] = new Item('Economic Times - Feb 3, 2002', 'JVtrans.htm', '_self', 20, 2, 0);

//  menu no 28
menu[28] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[28][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[28][1] = new Item('Business Line - Feb 6, 2002', 'sanhope.htm', '_self', 20, 2, 0);


//  menu no 29
menu[29] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[29][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[29][1] = new Item('Snapshots from AMP Sanmar launch', 'amplaun1.htm', '_self', 20, 2, 0);
menu[29][2] = new Item('News Today - Jan 22, 2002', 'AMPNTJ02.htm', '_self', 20, 2, 0);
menu[29][3] = new Item('Financial Express - Jan 22, 2002', 'AMPFEJ02.htm', '_self', 20, 2, 0);
menu[29][4] = new Item('Business Standard - Jan 22, 2002', 'AMPBSJ02.htm', '_self', 20, 2, 0);
menu[29][5] = new Item('Times Of India - Jan 22, 2002', 'AMPTIJ02.htm', '_self', 20, 2, 0);
menu[29][6] = new Item('Economic Times - Jan 22, 2002', 'AMPETJ02.htm', '_self', 20, 2, 0);
menu[29][7] = new Item('The Hindu - Jan 22, 2002', 'AMPTHJ02.htm', '_self', 20, 2, 0);
menu[29][8] = new Item('Indian Express - Jan 22, 2002', 'AMPIEJ02.htm', '_self', 20, 2, 0);
menu[29][9] = new Item('Business Line - Jan 22, 2002', 'AMPBLJ02.htm', '_self', 20, 2, 0);
menu[29][10] = new Item('Trinity Mirror - Jan 21, 2002', 'AMPTMJ02.htm', '_self', 20, 2, 0);
menu[29][11] = new Item('Indian Express - Jan 20, 2002', 'AMPIE202.htm', '_self', 20, 2, 0);

//  menu no 30
menu[30] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[30][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[30][1] = new Item('Unaudited financial results', 'SPQ3FY02.htm', '_self', 20, 2, 0);

//  menu no 31
menu[31] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[31][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[31][1] = new Item('Unaudited financial results', 'SPQ4FY02.htm', '_self', 20, 2, 0);

//  menu no 32
menu[32] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[32][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[32][1] = new Item('Unaudited financial results', 'CPQ4FY02.htm', '_self', 20, 2, 0);

//  menu no 33
menu[33] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[33][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[33][1] = new Item('Unaudited financial results', 'CPQ1FY03.htm', '_self', 20, 2, 0);

//  menu no 34
menu[34] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[34][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[34][1] = new Item('Unaudited financial results', 'SPQ1FY03.htm', '_self', 20, 2, 0);

//  menu no 35
menu[35] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[35][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[35][1] = new Item('Audited financial results', 'CPQ2FY03.htm', '_self', 20, 2, 0);

//  menu no 36
menu[36] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[36][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[36][1] = new Item('Audited financial results', 'SPQ2FY03.htm', '_self', 20, 2, 0);

//  menu no 37
menu[37] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[37][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[37][1] = new Item('Unaudited financial results', 'CPQ3FY03.htm', '_self', 20, 2, 0);

//  menu no 38
menu[38] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[38][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[38][1] = new Item('Unaudited financial results', 'SPQ3FY03.htm', '_self', 20, 2, 0);

var popOldWidth = window.innerWidth;
nsResizeHandler = new Function('if (popOldWidth != window.innerWidth) location.reload()');


//  menu no 39
menu[39] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[39][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[39][1] = new Item('Unaudited financial results', 'CPQ4FY03.htm', '_self', 20, 2, 0);

var popOldWidth = window.innerWidth;
nsResizeHandler = new Function('if (popOldWidth != window.innerWidth) location.reload()');


//  menu no 40
menu[40] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[40][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[40][1] = new Item('Unaudited financial results', 'SPQ4FY03.htm', '_self', 20, 2, 0);

//  menu no 41
menu[41] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[41][0] = new Menu(true, '>', -175, 7, 175, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[41][1] = new Item('The Hindu - 30.5.2003', 'RoverTH03.htm', '_self', 20, 2, 0);
menu[41][2] = new Item('Indian Express - 30.5.2003', 'RoverIE03.htm', '_self', 20, 2, 0);

//  menu no 42
menu[42] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[42][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[42][1] = new Item('Unaudited financial results', 'CPQ1FY04.htm', '_self', 20, 2, 0);

//  menu no 43
menu[43] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[43][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[43][1] = new Item('Unaudited financial results', 'SPQ1FY04.htm', '_self', 20, 2, 0);

//  menu no 44
menu[44] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[44][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[44][1] = new Item('Audited financial results', 'CPQ2FY04.htm', '_self', 20, 2, 0);

//  menu no 45
menu[45] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[45][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[45][1] = new Item('Audited financial results', 'SPQ2FY04.htm', '_self', 20, 2, 0);

//  menu no 46
menu[46] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[46][0] = new Menu(true, '>', -175, 7, 175, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[46][1] = new Item('The New Indian Express - 29.11.03', 'recruit.htm', '_self', 20, 2, 0);

//  menu no 47
menu[47] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[47][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[47][1] = new Item('The Hindu - 10.11.03', 'chemplan.htm', '_self', 20, 2, 0);

//  menu no 48
menu[48] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[48][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[48][1] = new Item('The Hindu - 11.11.03', 'commer_IIT.htm', '_self', 20, 2, 0);

//  menu no 49
menu[49] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[49][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[49][1] = new Item('The Financial Express - 2.12.03', 'BPOunit.htm', '_self', 20, 2, 0);

//  menu no 50
menu[50] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[50][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[50][1] = new Item('Business Line, 10.12.03', 'Geneie_BL.htm', '_self', 20, 2, 0);

//  menu no 51
menu[51] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[51][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[51][1] = new Item('The Financial Express, 10.12.03', 'Geneie_FE.htm', '_self', 20, 2, 0);

//  menu no 52
menu[52] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[52][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[52][1] = new Item('The Hindu, 10.12.03', 'Geneie_TH.htm', '_self', 20, 2, 0);

//  menu no 53
menu[53] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[53][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[53][1] = new Item('Business Standard, 10.12.03', 'Geneie_BS.htm', '_self', 20, 2, 0);

//  menu no 54
menu[54] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[54][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[54][1] = new Item('Unaudited financial results', 'CPQ3FY04.htm', '_self', 20, 2, 0);

//  menu no 55
menu[55] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[55][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[55][1] = new Item('Unaudited financial results', 'SPQ3FY04.htm', '_self', 20, 2, 0);

//  menu no 56
menu[56] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[56][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[56][1] = new Item('Business Line, 18.3.04', 'Drag_BL.htm', '_self', 20, 2, 0);

//  menu no 57
menu[57] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[57][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[57][1] = new Item('Audited financial results', 'CPQ4FY04.htm', '_self', 20, 2, 0);

//  menu no 58
menu[58] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[58][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[58][1] = new Item('Unaudited financial results', 'CPQ1FY05.htm', '_self', 20, 2, 0);

//  menu no 59
menu[59] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[59][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[59][1] = new Item('Audited financial results', 'CPQ2FY05.htm', '_self', 20, 2, 0);

//  menu no 60
menu[60] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[60][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[60][1] = new Item('Unaudited financial results', 'CPQ3FY05.htm', '_self', 20, 2, 0);


//  menu no 61
menu[61] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[61][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[61][1] = new Item('Business Line, Feb 07, 2002', 'Secret_JV_7.2.02.htm', '_self', 20, 2, 0);

//  menu no 62
menu[62] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[62][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[62][1] = new Item('The Hindu, 24/01/2003', 'Chem_demerge_24.1.03.htm', '_self', 20, 2, 0);

//  menu no 63
menu[63] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[63][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[63][1] = new Item('The Hindu Business Line, Jun 19, 2003', 'AMP_rural_19.6.03.htm', '_self', 20, 2, 0);

//  menu no 64
menu[64] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[64][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[64][1] = new Item('Businessworld, Feb23, 2004', 'Preety_Kumar_23.2.04.htm', '_self', 20, 2, 0);

//  menu no 65
menu[65] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[65][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[65][1] = new Item('Business Line, Apr 23, 2004', 'stakeup_23.2.04.htm', '_self', 20, 2, 0);

//  menu no 66
menu[66] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[66][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[66][1] = new Item('Business Line, May 08, 2004', 'Sanmar_duo_8.5.05.htm', '_self', 20, 2, 0);

//  menu no 67
menu[67] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[67][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[67][1] = new Item('The Hindu MetroPlus, Feb 05, 2005', 'peacock_5.2.05.htm', '_self', 20, 2, 0);

//  menu no 68
menu[68] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[68][0] = new Menu(true, '>', -175, 7, 175, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[68][1] = new Item('The Hindu - 8.3.05', 'Balaji-Mar05.htm', '_self', 20, 2, 0);

//  menu no 69
menu[69] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[69][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[69][1] = new Item('Audited financial results', 'CPQ4FY05.htm', '_self', 20, 2, 0);

//  menu no 70
menu[70] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[70][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[70][1] = new Item('Unaudited financial results', 'Chem_Unaudited_June30-05.pdf', '_self', 20, 2, 0);

//  menu no 71
menu[71] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[71][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[71][1] = new Item('Financial Express, August 1, 2005', 'AMP_2.8.05.htm', '_self', 20, 2, 0);

//  menu no 72
menu[72] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[72][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[72][1] = new Item('Business Line, Jun 25, 2005', 'BL_25-6-05.htm', '_self', 20, 2, 0);

//  menu no 73
menu[73] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[73][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[73][1] = new Item('The Hindu, August 6, 2005', 'TH_6-8-05.htm', '_self', 20, 2, 0);

//  menu no 74
menu[74] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[74][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[74][1] = new Item('Indian Express, August 6, 2005', 'IE_6-8-05.htm', '_self', 20, 2, 0);

//  menu no 75
menu[75] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[75][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[75][1] = new Item('The Hindu, August 26, 2005', 'TH_26-8-05.htm', '_self', 20, 2, 0);

//  menu no 76
menu[76] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[76][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[76][1] = new Item('Audited financial results', 'Chem_Audi_Oct-05.pdf', '_self', 20, 2, 0);

//  menu no 77
menu[77] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[77][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[77][1] = new Item('Unaudited financial results', 'Chem_Unaudi_Q3-05-06.pdf', '_self', 20, 2, 0);

//  menu no 78
menu[78] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[78][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[78][1] = new Item('Audited financial results', 'Chem_audi_April-25-06.pdf', '_self', 20, 2, 0);


//  menu no 79
menu[79] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[79][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[79][1] = new Item('Financial Express, July 11, 2006', 'FE_11-7-06.htm', '_self', 20, 2, 0);

//  menu no 80
menu[80] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[80][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[80][1] = new Item('Unaudited financial results', 'Chem_unaudi_25-7-06.pdf', '_self', 20, 2, 0);

//  menu no 81
menu[81] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[81][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[81][1] = new Item('Business Line, September 8, 2006', 'BL_8-9-06.htm', '_self', 20, 2, 0);

//  menu no 82
menu[82] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[82][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[82][1] = new Item('Audited financial results', 'Chem_Audi_Nov-06.pdf', '_self', 20, 2, 0);

//  menu no 83
menu[83] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[83][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[83][1] = new Item('The Hindu, November 30, 2006', 'KSN_humanity-award.htm', '_self', 20, 2, 0);

//  menu no 82
menu[84] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[84][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[84][1] = new Item('Unaudited financial results', 'Chem_Unaudi_20-1-07.pdf', '_self', 20, 2, 0);

//  menu no 85
menu[85] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[85][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[85][1] = new Item('The New Sunday Express, December 24, 2006', 'NK_Convocation_IE_24-12-06.htm', '_self', 20, 2, 0);

//  menu no 86
menu[86] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[86][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[86][1] = new Item('The Hindu, Trichy Edition', 'NK_Convocation_TH_24-12-06.htm', '_self', 20, 2, 0);

//  menu no 87
menu[87] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[87][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[87][1] = new Item('Dinamalar, December 24, 2006', 'NK_Convocation_DM_24-12-06.htm', '_self', 20, 2, 0);

//  menu no 88
menu[88] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[88][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[88][1] = new Item('The Hindu, December 13, 2006', 'MNC_TH_13-12-06.htm', '_self', 20, 2, 0);

//  menu no 89
menu[89] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[89][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[89][1] = new Item('The Hindu, December 13, 2006', 'Sruti_TH_13-12-06.htm', '_self', 20, 2, 0);

//  menu no 90
menu[90] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[90][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[90][1] = new Item('The Hindu, February 5, 2007', 'TH-5-2-07_water-supply.pdf', '_self', 20, 2, 0);

//  menu no 91
menu[91] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[91][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[91][1] = new Item('The Economic Times, March 23, 2007', 'ET_23-3-07.htm', '_self', 20, 2, 0);

//  menu no 92
menu[92] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[92][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[92][1] = new Item('The Hindu, February 19, 2007', 'TH_19-2-07.htm', '_self', 20, 2, 0);

//  menu no 93
menu[93] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[93][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[93][1] = new Item('The Hindu, February 14, 2007', 'TH_14-2-07.htm', '_self', 20, 2, 0);

//  menu no 94
menu[94] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[94][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[94][1] = new Item('Business standard, February 14, 2007', 'BS_14-2-07.htm', '_self', 20, 2, 0);

//  menu no 95
menu[95] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[95][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[95][1] = new Item('Pharmaceutical Business Review, 13-2-07', 'PBR_13-2-07.htm', '_self', 20, 2, 0);

//  menu no 96
menu[96] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[96][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[96][1] = new Item('The Hindu, February 5, 2007', 'TH_5-2-07.htm', '_self', 20, 2, 0);

//  menu no 97
menu[97] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[97][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[97][1] = new Item('The Hindu, January 26, 2007', 'TH_26-1-07.htm', '_self', 20, 2, 0);

//  menu no 98
menu[98] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[98][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[98][1] = new Item('Business standard, January 4, 2007', 'BS_4-1-07.htm', '_self', 20, 2, 0);

//  menu no 99
menu[99] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[99][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[99][1] = new Item('Business Line, January 4, 2007', 'BL_4-1-07.htm', '_self', 20, 2, 0);

//  menu no 100
menu[100] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[100][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[100][1] = new Item('The Economic Times, January 4, 2007', 'ET_4-1-07.htm', '_self', 20, 2, 0);

//  menu no 101
menu[101] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[101][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[101][1] = new Item('The Hindu, January 4, 2007', 'TH_4-1-07.htm', '_self', 20, 2, 0);

//  menu no 102
menu[102] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[102][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[102][1] = new Item('The Financial Express, January 4, 2007', 'FE_4-1-07.htm', '_self', 20, 2, 0);

//  menu no 103
menu[103] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[103][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[103][1] = new Item('Trinity Mirror, January 4, 2007', 'TM_4-1-07.htm', '_self', 20, 2, 0);

//  menu no 104
menu[104] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[104][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[104][1] = new Item('News Today, January 4, 2007', 'NT_4-1-07.htm', '_self', 20, 2, 0);

//  menu no 105
menu[105] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[105][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[105][1] = new Item('Business Review, February 12, 07', 'BL_12-2-07.htm', '_self', 20, 2, 0);

//  menu no 106
menu[106] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[106][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[106][1] = new Item('Audited financial results', 'Chem_audi_12-4-07.pdf', '_self', 20, 2, 0);

//  menu no 107
menu[107] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[107][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[107][1] = new Item('Publications, April 13, 2007', 'Press-Meet_13-04-07.pdf', '_self', 20, 2, 0);

//  menu no 108
menu[108] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[108][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[108][1] = new Item('The Economic Times, April 13, 2007', 'ET_13-4-07.htm', '_self', 20, 2, 0);
menu[108][2] = new Item('The Hindu, April 12, 2007', 'TH_12-4-07.htm', '_self', 20, 2, 0);
menu[108][3] = new Item('News Today, April 12, 2007', 'NT_12-4-07.htm', '_self', 20, 2, 0);
menu[108][4] = new Item('Trinity Mirror, April 12, 2007', 'TM_12-4-07.htm', '_self', 20, 2, 0);
menu[108][5] = new Item('Malaichudar, April 12, 2007', 'MC_12-4-07.htm', '_self', 20, 2, 0);
menu[108][6] = new Item('The Hindu, April 8, 2007', 'TH_8-4-07.htm', '_self', 20, 2, 0);
menu[108][7] = new Item('The Financial Express, April 8, 2007', 'FE_8-4-07.htm', '_self', 20, 2, 0);

//  menu no 109
menu[109] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[109][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[109][1] = new Item('Unaudited financial results', 'Chem_unaudi_25-7-07.pdf', '_self', 20, 2, 0);


//  menu no 110
menu[110] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[110][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[110][1] = new Item('The Hindu, March 17, 2007', 'TH_17-3-07.htm', '_self', 20, 2, 0);

//  menu no 111
menu[111] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[111][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[111][1] = new Item('Tamil Murasu, April 4, 2007', 'TM_24-4-07.htm', '_self', 20, 2, 0);

//  menu no 112
menu[112] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[112][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[112][1] = new Item('Unaudited financial results', 'Chem_unaudi_31-10-07.pdf', '_self', 20, 2, 0);


//  menu no 113
menu[113] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[113][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[113][1] = new Item('Unaudited financial results', 'Chem_unaudi_31-12-07.pdf', '_self', 20, 2, 0);


//  menu no 114
menu[114] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[114][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[114][1] = new Item('Audited financial results', 'Chem_audi_22-4-08.pdf', '_self', 20, 2, 0);

//  menu no 115
menu[115] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[115][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[115][1] = new Item('The New Indian Express, Nov 13, 2007', 'IE_13-11-07.htm', '_self', 20, 2, 0);
menu[115][2] = new Item('Dinamani, Nov 13, 2007', 'DMI_13-11-07.htm', '_self', 20, 2, 0);
menu[115][3] = new Item('Dinakaran, Nov 13, 2007', 'DKN_13-11-07.htm', '_self', 20, 2, 0);
menu[115][4] = new Item('Dinamalar, Nov 13, 2007', 'DMR_13-11-07.htm', '_self', 20, 2, 0);


//  menu no 116
menu[116] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[116][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[116][1] = new Item('Daily Thanthi, Nov 13, 2007', 'DTY_13-11-07.htm', '_self', 20, 2, 0);

//  menu no 117
menu[117] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[117][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[117][1] = new Item('Makkal Kural, Nov 20, 2007', 'MKR_20-11-07.htm', '_self', 20, 2, 0);


//  menu no 118
menu[118] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[118][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[118][1] = new Item('The Hindu, Nov 14, 2007', 'TH_14-11-07.htm', '_self', 20, 2, 0);
menu[118][2] = new Item('Trinity Mirror, Nov 19, 2007', 'TM_19-11-07.htm', '_self', 20, 2, 0);
menu[118][3] = new Item('Deccan Chronicle, Nov 20, 2007', 'DC_20-11-07.htm', '_self', 20, 2, 0);
menu[118][4] = new Item('Financial Express, Nov 20, 2007', 'FE_20-11-07.htm', '_self', 20, 2, 0);
menu[118][5] = new Item('The New Indian Express, Nov 20, 2007', 'IE_20-11-07.htm', '_self', 20, 2, 0);
menu[118][6] = new Item('The Hindu, Business Line, Nov 20, 2007', 'THBL_20-11-07.htm', '_self', 20, 2, 0);
menu[118][7] = new Item('News Today, Nov 20, 2007', 'NT_20-11-07.htm', '_self', 20, 2, 0);
menu[118][8] = new Item('Indian Express, Nov 20, 2007', 'IED_20-11-07.htm', '_self', 20, 2, 0);
menu[118][9] = new Item('Makkal Kural, Nov 20, 2007', 'MKL_20-11-07.htm', '_self', 20, 2, 0);
menu[118][10] = new Item('The Economic Times, Nov 20, 2007', 'ET_20-11-07.htm', '_self', 20, 2, 0);
menu[118][11] = new Item('Business Standard, Nov 21, 2007', 'BS_21-11-07.htm', '_self', 20, 2, 0);
menu[118][12] = new Item('Dinakaran, Nov 21, 2007', 'DKN_21-11-07.htm', '_self', 20, 2, 0);
menu[118][13] = new Item('The Hindu, Nov 23, 2007', 'TH_23-11-07.htm', '_self', 20, 2, 0);


//  menu no 119
menu[119] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[119][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[119][1] = new Item('Unaudited financial results', 'Chem_unaudi_17-7-08.pdf', '_self', 20, 2, 0);

//  menu no 120
menu[120] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[120][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[120][1] = new Item('Unaudited financial results', 'Chem_unaudi_31-10-08.pdf', '_self', 20, 2, 0);

//  menu no 121
menu[121] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[121][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[121][1] = new Item('Unaudited financial results', 'Chem_unaudi_24-1-09.pdf', '_self', 20, 2, 0);

//  menu no 122
menu[122] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[122][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[122][1] = new Item('Audited financial results', 'Chem_audi_28-5-09.pdf', '_self', 20, 2, 0);

//  menu no 123
menu[123] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[123][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[123][1] = new Item('Unudited financial results', 'Chem_unaudi_28-7-09.pdf', '_self', 20, 2, 0);

//  menu no 124
menu[124] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[124][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[124][1] = new Item('IACC_Business cooperation award', 'IACC_BCA.htm', '_self', 20, 2, 0);

//  menu no 125
menu[125] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[125][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[125][1] = new Item('Flowserve-IACC-Sanmar-oneindia 11-4-07', 'Flowserve-IACC-Sanmar-oneindia_11-4-07.htm', '_self', 20, 2, 0);

//  menu no 126
menu[126] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[126][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[126][1] = new Item('Machinist_Erla 10-5-07', 'Machinist_erla_10-5-07.htm', '_self', 20, 2, 0);

//  menu no 127
menu[127] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[127][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[127][1] = new Item('Business Standard 15-5-07', 'Business Standard_15-5-07.htm', '_self', 20, 2, 0);

//  menu no 128
menu[128] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[128][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[128][1] = new Item('BusinessLine 7-11-07', 'BusinessLine_7-11-07.htm', '_self', 20, 2, 0);

//  menu no 129
menu[129] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[129][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[129][1] = new Item('The Hindu 20-11-07', 'The Hindu_20-11-07.htm', '_self', 20, 2, 0);

//  menu no 130
menu[130] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[130][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[130][1] = new Item('webindia 8-12-07', 'webindia_8-12-07.htm', '_self', 20, 2, 0);

//  menu no 131
menu[131] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[131][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[131][1] = new Item('Indiatimes 23-2-08', 'Indiatimes_23-2-08.htm', '_self', 20, 2, 0);

//  menu no 132
menu[132] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[132][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[132][1] = new Item('China Industry News 24-4-08', 'China Industry News_24-4-08.htm', '_self', 20, 2, 0);
menu[132][2] = new Item('Financial Express 15-4-08', 'Financial Express_15-4-08.htm', '_self', 20, 2, 0);
menu[132][3] = new Item('BusinessLine 2-4-08', 'BusinessLine_2-4-08.htm', '_self', 20, 2, 0);
menu[132][4] = new Item('Financial Express 2-4-08', 'Financial Express_2-4-08.htm', '_self', 20, 2, 0);
menu[132][5] = new Item('The Hindu 2-4-08', 'The Hindu_2-4-08.htm', '_self', 20, 2, 0);
menu[132][6] = new Item('Topnews 2-4-08', 'Topnews_2-4-08.htm', '_self', 20, 2, 0);

//  menu no 133
menu[133] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[133][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[133][1] = new Item('The Hindu_25-4-08', 'The Hindu_25-4-08.htm', '_self', 20, 2, 0);

//  menu no 134
menu[134] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[134][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[134][1] = new Item('Financial Express 1-4-09', 'Financial Express_1-4-09.htm', '_self', 20, 2, 0);
menu[134][2] = new Item('Business Standard 31-3-09', 'Business Standard 31-3-09.htm', '_self', 20, 2, 0);
menu[134][3] = new Item('Economic Times 31-3-09', 'Economic Times_31-3-09.htm', '_self', 20, 2, 0);
menu[134][4] = new Item('BusinessLine 14-4-07', 'BusinessLine_14-4-07.htm', '_self', 20, 2, 0);
menu[134][5] = new Item('Livemint 14-4-07', 'Livemint_14-4-07.htm', '_self', 20, 2, 0);
menu[134][6] = new Item('domain-b_Sanmar 13-4-07', 'domain-b_Sanmar_13-4-07.htm', '_self', 20, 2, 0);
menu[134][7] = new Item('TCI-Erla-Indiacar 17-11-06', 'TCI-Erla-Indiacar_17-11-06.htm', '_self', 20, 2, 0);

//  menu no 135
menu[135] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[135][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[135][1] = new Item('1888Pressrelease 31-5-09', '1888Pressrelease_31-5-09.htm', '_self', 20, 2, 0);
menu[135][2] = new Item('pressreleasepoint 3-6-09', 'pressreleasepoint_3-6-09.htm', '_self', 20, 2, 0);

//  menu no 136
menu[136] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[136][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[136][1] = new Item('Press Release 21-9-09', 'CSL-Cuddalore-Press-release.htm', '_self', 20, 2, 0);
menu[136][2] = new Item('Inaugural Function Press Release', 'CSL-Cuddalore-Inaugural-Press-release.htm', '_self', 20, 2, 0);
menu[136][3] = new Item('Business Standard 21-9-09', 'Business-Standard_21-9-09.htm', '_self', 20, 2, 0);
menu[136][4] = new Item('Business Line 21-9-09', 'Business Line_21-9-09.htm', '_self', 20, 2, 0);
menu[136][5] = new Item('The Economic Times 20-9-09', 'The Economic Times_20-9-09.htm', '_self', 20, 2, 0);
menu[136][6] = new Item('The Hindu 20-9-09', 'The Hindu_20-9-09.htm', '_self', 20, 2, 0);

//  menu no 137
menu[137] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[137][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[137][1] = new Item('Press Release', 'Pacific-Valves_Inauguration.htm', '_self', 20, 2, 0);
menu[137][2] = new Item('Business Standard 23-9-09', 'Business Standard_23-9-09.htm', '_self', 20, 2, 0);


//  menu no 138
menu[138] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[138][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[138][1] = new Item('Unaudited financial results', 'Chem_unaudi_26-10-09.pdf', '_self', 20, 2, 0);


//  menu no 139
menu[139] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[139][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[139][1] = new Item('Unaudited financial results', 'Chem_unaudi_29-1-10.pdf', '_self', 20, 2, 0);

//  menu no 110
menu[140] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[140][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[140][1] = new Item('Audited financial results', 'Chem_audi_30-4-10.pdf', '_self', 20, 2, 0);

//  menu no 141
menu[141] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[141][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[141][1] = new Item('Dr. Hassan Younis to Sanmar Engineering Corporation', 'Egypt-Minister-visit.pdf', '_self', 20, 2, 0);


//  menu no 142
menu[142] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[142][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[142][1] = new Item('First ever major international project loan', 'TCI Sanmar Press Release_31Mar2009.pdf', '_self', 20, 2, 0);


//  menu no 143
menu[143] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[143][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[143][1] = new Item('10th National Management Quiz - 2009', 'AIMA-Sanmar-2010.pdf', '_self', 20, 2, 0);



//  menu no 144
menu[144] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[144][0] = new Menu(true, '>', -255, 7, 250, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[144][1] = new Item('Indo-US Business Cooperation Award 2010', 'IACC-Sanmar_2010.pdf', '_self', 20, 2, 0);


//  menu no 145
menu[145] = new Array();
// This is across but not down... a horizontal popout (with crazy stylesheets :)...
menu[145][0] = new Menu(true, '>', 202, 7, 180, '#000080', '#003366', 'crazyBorder', 'crazyText');
// These items are lengthier than normal, and have extra spacing due to the fancy borders.
menu[145][1] = new Item('Unudited financial results', 'Chem_unaudi_27-7-10.pdf', '_self', 20, 2, 0);


var popOldWidth = window.innerWidth;
nsResizeHandler = new Function('if (popOldWidth != window.innerWidth) location.reload()');


if (isNS4) document.captureEvents(Event.CLICK);
document.onclick = clickHandle;

function clickHandle(evt)
{
 if (isNS4) document.routeEvent(evt);
 hideAllBut(0);
}


// This is just the moving command for the example.

function moveRoot()
{
 with(menu[0][0].ref) left = ((parseInt(left) < 100) ? 100 : 50);
}