<!--

// START FUNCTIONS COMMON TO BOTH TEMPLATES //

var diagOn = 0;
var newWin;

var NN = (navigator.appName.indexOf("Netscape") != -1);
var IE = (navigator.appName.indexOf("Microsoft") != -1);
var MC = (navigator.userAgent.indexOf("Mac") < 0);
var UX = (navigator.userAgent.indexOf("X11") < 0);

function makeWin(url,name,feat,diagOn,cnfrm) {
	var sX = screen.availWidth;
	var sY = screen.availHeight;
	var dX = parseInt(sX / 5);
	var dY = parseInt(sY / 5);
	var dXY = ",screenX=" + dX + ",screenY=" + dY;
	feat += dXY;
	if (cnfrm) {
		if (confirm("Are you sure. Do you wish to continue?")) {
			newWin = window.open(url,name,feat);
		}
	} else {
		newWin = window.open(url,name,feat);
	}
}

function confirmClose(loc) {
	if (confirm("Are you sure you wish to exit this site?")) {
		location.href = loc;
	}
}

preview3dtext = 0;
function closeWin() {
	if (newWin && !newWin.closed && !preview3dtext) {
		newWin.close();
	}
}


// END FUNCTIONS COMMON TO BOTH TEMPLATES //


// START DHTML TEMPLATE FUNCTIONS //

function AutoGo() {
	if (newWin) {
		if (diagOn == 1) {
			newWin.close();
			diagOn = 0;
		}
	}
	if (IE) menuState.off();
	for (i = 0; i < menuNames.length; i++) {
		(NN) ? document.layers[menuNames[i]].hide() : document.all[menuNames[i]].hide();
	}
	if (this.url && this.url != 'ThisItemIsTurnedOff') {
		location.href = this.url;
	}
	menuState = false;
}

var itemOutColor = "#D6EBF7";
var itemOverColor = "#9CBECE";
var buttonOverColor = "#FFFFFF";
var buttonOutColor = "#C6C3C6";
var buttonDownColor = "#999999";
var menuLightColor = "#ffffff";
var menuDarkColor = "#213C4A";
var fontOnColor = "#000000";
var fontOffColor = "#999999";
var menuNames = new 
Array('Budcos','cBudcosa','cBudcosb','cBudcosc','cBudcosd','cRaj','Gsd','cGsde','cGsdf','Rep','cRepa','cRepb','cRepc','cRepd','cRepe','cRepf','Nsrm');
var menuState = false;

function makeIE(menuName,menuWidth,isChild,parentMenu,parentItemNum) {
	var menuX,menuY;
	var menuLayer = "";
	var startLeft = 0;
	var startTop = 0;
	if (!isChild) {
		markerImg = eval("document.all." + menuName + "Img");
		container = markerImg.offsetParent;
		while (container) {
			startLeft += container.offsetLeft;
			startTop += container.offsetTop;
			container = container.offsetParent;
		}
	} else {
		parentItem = document.all[parentMenu + parentItemNum];
		parentMenu = document.all[parentMenu];
	}
	if (!isChild) {
		menuLayer += '<DIV ID="' + menuName + 'button" ';
		menuLayer += 'STYLE="position:absolute; left:' + startLeft + '; top:' + startTop + '; width:' + markerImg.width + 'px;';
		menuLayer += 'background-color:' + buttonOutColor + '; visibility:visible;">';
		menuLayer += '<IMG SRC="' + markerImg.src + '" WIDTH=' + markerImg.width + ' ';
		menuLayer += 'HEIGHT=' + markerImg.height + '></DIV>';
	}	
	if (isChild) {
		menuX = parseInt(parentMenu.style.left) + parseInt(parentMenu.style.width);
//	The following value must be declared twice. Don't ask why because I don't know. It just does.
		menuY = parentItem.offsetTop + parseInt(parentMenu.style.top);
		menuY = parentItem.offsetTop + parseInt(parentMenu.style.top) + (4 * parentItemNum);
	} else {
		menuX = startLeft - 2;
		menuY = startTop + 24;
	}
	menuLayer += '<DIV ID="' + menuName + '" STYLE="position:absolute; visibility:hidden; width:' + menuWidth + '; ';
	menuLayer += 'background-color:' + itemOutColor + '; left:' + menuX + '; top:' + menuY + ';">';
	var itemCount = 0;
	while (menuData[menuName][itemCount][0]) {
		var item = menuData[menuName][itemCount];
		var itemWidth = menuWidth -4;
		var itemLayer = "";
		if (item[0] == 'spacer') {
			itemLayer += '<DIV ID="' + menuName + itemCount + '" STYLE="position:relative; ';
			itemLayer += 'visibility:inherit; width:' + itemWidth + '; ';
			itemLayer += 'background-color:' + itemOutColor + ';">';
			itemLayer += '<IMG SRC="spacer.gif" WIDTH=' + itemWidth + ' HEIGHT=2></DIV>';
		} else {
			var itemFontColor = (item[2] || (item[1] != 'ThisItemIsTurnedOff')) ? fontOnColor : fontOffColor;
			var childArrow = (item[2]) ? '<IMG SRC="http://www.digitalmadurai.com/childarrow.gif" WIDTH=13 HEIGHT=13 ALIGN=RIGHT>' : '';
			itemLayer += '<DIV ID="' + menuName + itemCount + '" STYLE="position:relative; ';
			itemLayer += 'left:2; visibility:inherit; width:' + itemWidth + '; ';
			itemLayer += 'background-color:' + itemOutColor + '; ';
			itemLayer += 'font-family: MS Sans Serif,arial,helvetica; font-size:8pt;">';
			itemLayer += childArrow + '<font-size:8pt COLOR="' + itemFontColor + '">' + item[0] + '</FONT></DIV>';
		}
		itemCount++;
		menuLayer += itemLayer;
	}
	menuLayer += '<DIV ID="' + menuName + 'pad" HEIGHT=1></DIV>';
	menuLayer += '</DIV>';
	document.write(menuLayer);
}

function makeNN(menuName,menuWidth,isChild,parentMenu,parentItemNum) {
	var menuLayer = "";
	if (isChild) {
		parentItem = document.layers[parentMenu].document.layers[parentMenu + parentItemNum];
		parentMenu = document.layers[parentMenu];
	} else {
		markerImg = eval("document.images." + menuName + "Img");
	}
	if (!isChild) {
		menuLayer += '<LAYER ID="' + menuName + 'button" LEFT=' + markerImg.x + ' TOP=' + markerImg.y + ' ';
		menuLayer += 'BGCOLOR="' + buttonOutColor + '" WIDTH=' + markerImg.width + ' HEIGHT=' + markerImg.height + ' ';
		menuLayer += 'CLIP="-2,-2,' + (markerImg.width + 2) + ',' + (markerImg.height + 2) + '">';
		menuLayer += '<IMG SRC="' + markerImg.src + '" WIDTH=' + markerImg.width + ' ';
		menuLayer += 'HEIGHT=' + markerImg.height + '></LAYER>';
	}
	var menuX = (!isChild) ? markerImg.x - 2 : parentMenu.left + parentMenu.clip.right;
	var menuY = (!isChild) ? markerImg.y + markerImg.height + 3: parentMenu.top + parentItem.top;
	menuLayer += '<LAYER ID="' + menuName + '" BGCOLOR="' + itemOverColor + '" ';
	menuLayer += 'WIDTH=' + menuWidth + ' LEFT=' + menuX + ' TOP=' + menuY + ' VISIBILITY=HIDDEN>';
	var itemTop = 2;
	var itemCount = 0;
	while (menuData[menuName][itemCount][0]) {
		var item = menuData[menuName][itemCount];
		var itemWidth = menuWidth - 4;
		var clipVals;
		var itemLayer = "";
		if (item[0] == 'spacer') {
			clipVals = '0,0,' + itemWidth + ',2';
			itemLayer += '<LAYER ID="' + menuName + itemCount + '" TOP=' + itemTop + ' ';
			itemLayer += 'CLIP="' + clipVals + '" HEIGHT=2 LEFT=2 BGCOLOR="' + itemOutColor + '">';
			itemLayer += '<IMG SRC="spacer.gif" WIDTH=' + itemWidth + ' HEIGHT=2></LAYER>';
			itemTop += 2;
		} else {
			var itemFontColor = (item[2] || (item[1] != 'ThisItemIsTurnedOff')) ? fontOnColor : fontOffColor;
			var childArrow = (item[2]) ? '<IMG SRC="http://www.digitalmadurai.com/childarrow.gif" WIDTH=13 HEIGHT=13 ALIGN=RIGHT>' : '';
			clipVals = '0,0,' + itemWidth + ',20';
			itemLayer += '<LAYER ID="' + menuName + itemCount + '" BGCOLOR="' + itemOutColor + '" ';
			itemLayer += 'WIDTH=' + itemWidth + ' TOP=' + itemTop + ' CLIP="' + clipVals + '" ';
			itemLayer += 'LEFT=2 HEIGHT=20 CLASS="item">' + childArrow;
			itemLayer += '<FONT SIZE=2 COLOR="' + itemFontColor + '">&nbsp;' + item[0] + '</FONT></LAYER>';
			itemLayer += '<LAYER ID="' + menuName + itemCount + 'cover" HEIGHT=20 LEFT=3';
			itemLayer += 'WIDTH=' + menuWidth + ' TOP=' + itemTop + ' CLIP="' + clipVals + '"></LAYER>';
			itemTop += 20;
		}
		itemCount++;
		menuLayer += itemLayer
	}
	menuLayer += '<LAYER ID="' + menuName + 'pad" TOP=' + itemTop + ' HEIGHT=1></LAYER>';
	menuLayer += '</LAYER>';
	document.write(menuLayer);
}

function captureClicks() {
	if (NN) {
		window.captureEvents(Event.MOUSEDOWN);
		window.onmousedown = menusOff;
	} else if (IE) {
		document.onmousedown = doNothingIE;
		document.onmousemove = doNothingIE;
		document.onmouseup = redirIEClick;
	}
}

function doNothingIE() {
	return false;
}

function redirIEClick() {
	document.onmousedown = menusOff;
	document.onmouseup = "default";
	document.onmousemove = "default";
}

function menusOff(evt) {
	var buttonClick = false;
	if (NN) {
		var buttonL = menuState.left;
		var buttonT = menuState.top;
		var buttonR = menuState.left + menuState.clip.right;
		var buttonB = menuState.top + menuState.clip.bottom;
		var clickX = evt.pageX;
		var clickY = evt.pageY;
		if ((clickX > buttonL) && (clickX < buttonR) && (clickY > buttonT) && (clickY < buttonB)) {
			buttonClick++;
		}
	} else {
	//	document.onmousedown = "default";
		if (event.srcElement.id.indexOf('button') > 0) {
			buttonClick++;
		}
	}
	if (buttonClick && menuState) {
		menuState.menu.hide();
		(NN) ? menuState.bgColor = buttonOverColor : menuState.up();
	} else if (menuState) {
		(NN) ? menuState.bgColor = buttonOutColor : menuState.off();
		for (i = 0; i < menuNames.length; i++) {
			(NN) ? document.layers[menuNames[i]].hide() : document.all[menuNames[i]].hide();
		}
	}
	(NN) ? window.releaseEvents(Event.MOUSEDOWN) : document.onmousedown = "default";
	menuState = false;
}

function buttonOver() {
	if (menuState) {
		(NN) ? this.bgColor = buttonDownColor : this.down();
		this.menu.show();
		menuState = this;
		for (name in menuNames) {
			if (menuNames[name] == this.menu.id) continue;
			hideIt(menuNames[name]);
		}
		captureClicks();
	} else {
		(NN) ? this.bgColor = buttonOverColor : this.up();
	}
	if (menuState) {
		for (name in menuNames) {
			if (menuNames[name].charAt(0) != 'c') {
				button = (NN) ? document.layers[menuNames[name] + 'button'] : document.all[menuNames[name] + 'button'];
				if (button == menuState) continue;
				(NN) ? button.bgColor = buttonOutColor : button.off();
			}
		}
	}
}

function buttonOut() {
	if (!menuState) {
		(NN) ? this.bgColor = buttonOutColor : this.off();
	}
}

function buttonClick() {
	if (!menuState) {
		(NN) ? this.bgColor = buttonDownColor : this.down();
		this.menu.show();
		closeWin();
		menuState = this;
		captureClicks();
	} else if (menuState == this) {
		(NN) ? this.bgColor = buttonOverColor : this.up();
		this.menu.hide();
		menuState = false;
	}
}

function itemOver() {
	var item = (NN) ? this.item : this;
	(NN) ? item.bgColor = itemOverColor : item.style.backgroundColor = itemOverColor;
//	if (IE) item.style.cursor = "default";
	if (this.menu.activeChild) {
		this.menu.activeChild.hide();
	}
	if (item.child) {
		this.menu.activeChild = item.child;
		item.child.show();
	}
}

function itemOut() {
	(NN) ? this.item.bgColor = itemOutColor : this.style.backgroundColor = itemOutColor;
}

function showIt(lyr) {
	var obj = (this.id) ? this : ((NN) ? document.layers[lyr] : document.all[lyr]);
	(NN) ? obj.visibility = "visible" : obj.style.visibility = "visible";
}

function hideIt(lyr) {
	var obj = (this.id) ? this : ((NN) ? document.layers[lyr] : document.all[lyr]);
	(NN) ? obj.visibility = "hidden" : obj.style.visibility = "hidden";
}

function borderUp() {
	with (this.style) {
		borderLeftColor = buttonOverColor;
		borderTopColor = buttonOverColor;
		borderRightColor = buttonDownColor;
		borderBottomColor = buttonDownColor;
	}
}

function borderDown() {
	with (this.style) {
		borderLeftColor = buttonDownColor;
		borderTopColor = buttonDownColor;
		borderRightColor = buttonOverColor;
		borderBottomColor = buttonOverColor;
	}
}
	
function borderOff() {
	with (this.style) {
		borderLeftColor = buttonOutColor;
		borderTopColor = buttonOutColor;
		borderRightColor = buttonOutColor;
		borderBottomColor = buttonOutColor;
	}
}

menuData = new Array()
for (i=0; i < menuNames.length; i++) {
	menuData[menuNames[i]] = new Array(20)
	for (j=0; j < 20; j++) {
		menuData[menuNames[i]][j] = new Array(2);
	}
}


menuData['Budcos'][0][0]="ERP";
menuData['Budcos'][0][1]="http://64.70.131.105/sap/erp/";
menuData['Budcos'][0][2]="cBudcosa";

menuData['Budcos'][1][0]="E-Commerce";
menuData['Budcos'][1][1]="http://64.70.131.105/sap/ecommerce/";
menuData['Budcos'][1][2]="cBudcosb";

menuData['Budcos'][2][0]="Content Management";
menuData['Budcos'][2][1]="http://64.70.131.105/sap/cm/";
menuData['Budcos'][2][2]="cBudcosc";

menuData['Budcos'][3][0]="CRM";
menuData['Budcos'][3][1]="http://64.70.131.105/sap/crm/";
menuData['Budcos'][3][2]="cBudcosd";

menuData['Budcos'][4][0]="ASP";
menuData['Budcos'][4][1]="http://64.70.131.105/sap/asp/";
menuData['Budcos'][4][2]="cRaj";

menuData['Budcos'][5][0]="EAI";
menuData['Budcos'][5][1]="http://64.70.131.105/sap/eai/";
menuData['Budcos'][5][2]=0;

menuData['cBudcosa'][0][0]="Overview ";
menuData['cBudcosa'][0][1]="http://64.70.131.105/sap/erp/";
menuData['cBudcosa'][0][2]=0;

menuData['cBudcosa'][1][0]="MRP to ERP Historical Lookup";
menuData['cBudcosa'][1][1]="http://64.70.131.105/sap/erp/mrptoerp.htm";
menuData['cBudcosa'][1][2]=0;

menuData['cBudcosa'][2][0]="ERP Resources and Links";
menuData['cBudcosa'][2][1]="http://64.70.131.105/sap/erp/links.htm";
menuData['cBudcosa'][2][2]=0;


menuData['cBudcosb'][0][0]="Introduction & Evolution";
menuData['cBudcosb'][0][1]="http://64.70.131.105/sap/ecommerce/";
menuData['cBudcosb'][0][2]=0;

menuData['cBudcosb'][1][0]="Vital Elements of E-Commerce";
menuData['cBudcosb'][1][1]="http://64.70.131.105/sap/ecommerce/elements.htm";
menuData['cBudcosb'][1][2]=0;

menuData['cBudcosb'][2][0]="Why the Hype?";
menuData['cBudcosb'][2][1]="http://64.70.131.105/sap/ecommerce/hype.htm";
menuData['cBudcosb'][2][2]=0;

menuData['cBudcosb'][3][0]="eMarketer / eMarketplace";
menuData['cBudcosb'][3][1]="http://64.70.131.105/sap/ecommerce/emarket.htm";
menuData['cBudcosb'][3][2]=0;

menuData['cBudcosb'][4][0]="E-Comm Product Resources";
menuData['cBudcosb'][4][1]="http://64.70.131.105/sap/ecommerce/resources.htm";
menuData['cBudcosb'][4][2]=0;


menuData['cBudcosc'][0][0]="What's that all about?";
menuData['cBudcosc'][0][1]="http://64.70.131.105/sap/cm/";
menuData['cBudcosc'][0][2]=0;

menuData['cBudcosc'][1][0]="Dynamic Web Content Management";
menuData['cBudcosc'][1][1]="http://64.70.131.105/sap/cm/dcm.htm";
menuData['cBudcosc'][1][2]=0;

menuData['cBudcosc'][2][0]="Typical Enterprise Solution Blocks";
menuData['cBudcosc'][2][1]="http://64.70.131.105/sap/cm/solution_blocks.htm";
menuData['cBudcosc'][2][2]=0;

menuData['cBudcosc'][3][0]="Advantages of Effective CM System";
menuData['cBudcosc'][3][1]="http://64.70.131.105/sap/cm/effectivecm_system.htm";
menuData['cBudcosc'][3][2]=0;

menuData['cBudcosc'][4][0]="Popular CM Vendors & Links";
menuData['cBudcosc'][4][1]="http://64.70.131.105/sap/cm/links.htm";
menuData['cBudcosc'][4][2]=0;



menuData['cBudcosd'][0][0]="CRM - Introduction";
menuData['cBudcosd'][0][1]="http://64.70.131.105/sap/crm/";
menuData['cBudcosd'][0][2]=0;

menuData['cBudcosd'][1][0]="Components of CRM";
menuData['cBudcosd'][1][1]="http://64.70.131.105/sap/crm/components.htm";
menuData['cBudcosd'][1][2]=0;

menuData['cBudcosd'][2][0]="The Bottom Line";
menuData['cBudcosd'][2][1]="http://64.70.131.105/sap/crm/bottom_line.htm";
menuData['cBudcosd'][2][2]=0;

menuData['cBudcosd'][3][0]="Popular CRM Solutions";
menuData['cBudcosd'][3][1]="http://64.70.131.105/sap/crm/solutions.htm";
menuData['cBudcosd'][3][2]=0;


menuData['Gsd'][0][0]="Technology News";
menuData['Gsd'][0][1]="http://64.70.131.105/sap/cons.htm";
menuData['Gsd'][0][2]=0;



menuData['Gsd'][1][0]="Popular Downloads";
menuData['Gsd'][1][1]="";
menuData['Gsd'][1][2]=0;

menuData['Gsd'][2][0]="E - Learning Sites";
menuData['Gsd'][2][1]="http://64.70.131.105/sap/cons.htm";
menuData['Gsd'][2][2]=0;

menuData['Gsd'][3][0]="Work Permit / Visa";
menuData['Gsd'][3][1]="http://64.70.131.105/sap/cons.htm";
menuData['Gsd'][3][2]="cGsde";

menuData['Gsd'][4][0]="Career Planner";
menuData['Gsd'][4][1]="http://64.70.131.105/sap/cons.htm";
menuData['Gsd'][4][2]="cGsdf";

menuData['Gsd'][5][0]="Discussion Forum";
menuData['Gsd'][5][1]="http://64.70.131.105/sap/cons.htm";
menuData['Gsd'][5][2]=0;

menuData['cGsde'][0][0]="U.S. Visa / Immigration Guide";
menuData['cGsde'][0][1]="http://64.70.131.105/sap/cons.htm";
menuData['cGsde'][0][2]=0;
menuData['cGsde'][1][0]="Work Around the World";
menuData['cGsde'][1][1]="http://64.70.131.105/sap/cons.htm";
menuData['cGsde'][1][2]=0;
menuData['cGsde'][2][0]="Immigration Lawers";
menuData['cGsde'][2][1]="http://64.70.131.105/sap/cons.htm";
menuData['cGsde'][2][2]=0;

menuData['cGsdf'][0][0]="Job Search";
menuData['cGsdf'][0][1]="http://64.70.131.105/sap/cons.htm";
menuData['cGsdf'][0][2]=0;
menuData['cGsdf'][1][0]="Resume Writing";
menuData['cGsdf'][1][1]="http://64.70.131.105/sap/cons.htm";
menuData['cGsdf'][1][2]=0;
menuData['cGsdf'][2][0]="Training & Certification";
menuData['cGsdf'][2][1]="http://64.70.131.105/sap/cons.htm";
menuData['cGsdf'][2][2]=0;
menuData['cGsdf'][3][0]="Subscriptions";
menuData['cGsdf'][3][1]="http://64.70.131.105/sap/cons.htm";
menuData['cGsdf'][3][2]=0;
menuData['cGsdf'][4][0]="Announce Your Availablity";
menuData['cGsdf'][4][1]="http://64.70.131.105/sap/cons.htm";
menuData['cGsdf'][4][2]=0;

menuData['cRaj'][0][0]="Application Service Providers - Definition";
menuData['cRaj'][0][1]="http://64.70.131.105/sap/asp/";
menuData['cRaj'][0][2]=0;
menuData['cRaj'][1][0]="Benefits of ASPs";
menuData['cRaj'][1][1]="http://64.70.131.105/sap/asp/benefits.htm";
menuData['cRaj'][1][2]=0;
menuData['cRaj'][2][0]="Types of Customers using ASPs";
menuData['cRaj'][2][1]="http://64.70.131.105/sap/asp/customers.htm";
menuData['cRaj'][2][2]=0;
menuData['cRaj'][3][0]="Selecting an ASP";
menuData['cRaj'][3][1]="http://64.70.131.105/sap/asp/selection.htm";
menuData['cRaj'][3][2]=0;
menuData['cRaj'][4][0]="Implementation & Integration";
menuData['cRaj'][4][1]="http://64.70.131.105/sap/asp/integration.htm";
menuData['cRaj'][4][2]=0;


menuData['Rep'][0][0]="Programming";
menuData['Rep'][0][1]="http://64.70.131.105/sap/cons.htm";
menuData['Rep'][0][2]="cRepa";

menuData['Rep'][1][0]="Data Warehousing";
menuData['Rep'][1][1]="http://64.70.131.105/sap/cons.htm";
menuData['Rep'][1][2]="cRepb";

menuData['Rep'][2][0]="Web Development";
menuData['Rep'][2][1]="http://64.70.131.105/sap/cons.htm";
menuData['Rep'][2][2]="cRepc";

menuData['Rep'][3][0]="Multimedia";
menuData['Rep'][3][1]="http://64.70.131.105/sap/cons.htm";
menuData['Rep'][3][2]="cRepd";
menuData['Rep'][4][0]="Storage / Security";
menuData['Rep'][4][1]="http://64.70.131.105/sap/cons.htm";
menuData['Rep'][4][2]="cRepe";
menuData['Rep'][5][0]="Networking";
menuData['Rep'][5][1]="http://64.70.131.105/sap/cons.htm";
menuData['Rep'][5][2]="cRepf";
menuData['Rep'][6][0]="Artificial Intelligency";
menuData['Rep'][6][1]="http://64.70.131.105/sap/cons.htm";
menuData['Rep'][6][2]=0;

menuData['cRepa'][0][0]="Structured Programming";
menuData['cRepa'][0][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepa'][0][2]=0;
menuData['cRepa'][1][0]="Object Oriented Programming";
menuData['cRepa'][1][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepa'][1][2]=0;
menuData['cRepa'][2][0]="Database Design";
menuData['cRepa'][2][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepa'][2][2]=0;
menuData['cRepa'][3][0]="Application Development";
menuData['cRepa'][3][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepa'][3][2]=0;
menuData['cRepa'][4][0]="Interface Design";
menuData['cRepa'][4][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepa'][4][2]=0;
menuData['cRepa'][5][0]="Wireless Development Kits";
menuData['cRepa'][5][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepa'][5][2]=0;
menuData['cRepa'][6][0]="Web Development Tools";
menuData['cRepa'][6][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepa'][6][2]=0;
menuData['cRepa'][7][0]="Computer Aided Design";
menuData['cRepa'][7][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepa'][7][2]=0;
menuData['cRepa'][8][0]="Remote Access Softwares";
menuData['cRepa'][8][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepa'][8][2]=0;
menuData['cRepa'][9][0]="Embedded Systems";
menuData['cRepa'][9][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepa'][9][2]=0;
menuData['cRepa'][10][0]="Utility Tools";
menuData['cRepa'][10][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepa'][10][2]=0;
menuData['cRepa'][11][0]="Software Manuals";
menuData['cRepa'][11][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepa'][11][2]=0;

menuData['cRepb'][0][0]="Concepts & Definition";
menuData['cRepb'][0][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepb'][0][2]=0;
menuData['cRepb'][1][0]="Typical Architecture";
menuData['cRepb'][1][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepb'][1][2]=0;
menuData['cRepb'][2][0]="Data Mart Components";
menuData['cRepb'][2][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepb'][2][2]=0;
menuData['cRepb'][3][0]="Project Life Cycle";
menuData['cRepb'][3][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepb'][3][2]=0;
menuData['cRepb'][4][0]="Business Objects";
menuData['cRepb'][4][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepb'][4][2]=0;
menuData['cRepb'][5][0]="Data Modeling";
menuData['cRepb'][5][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepb'][5][2]=0;

menuData['cRepc'][0][0]="Site Design and Planning";
menuData['cRepc'][0][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepc'][0][2]=0;
menuData['cRepc'][1][0]="Web Application Development";
menuData['cRepc'][1][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepc'][1][2]=0;
menuData['cRepc'][2][0]="Database Integration";
menuData['cRepc'][2][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepc'][2][2]=0;
menuData['cRepc'][3][0]="Testing and Deployment";
menuData['cRepc'][3][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepc'][3][2]=0;
menuData['cRepc'][4][0]="Online Tools and Resources";
menuData['cRepc'][4][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepc'][4][2]=0;


menuData['cRepd'][0][0]="Streaming Audio / Video";
menuData['cRepd'][0][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepd'][0][2]=0;
menuData['cRepd'][1][0]="Data Driven Multimedia";
menuData['cRepd'][1][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepd'][1][2]=0;

menuData['cRepe'][0][0]="Storage and Media";
menuData['cRepe'][0][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepe'][0][2]=0;
menuData['cRepe'][1][0]="Storage Area Networks";
menuData['cRepe'][1][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepe'][1][2]=0;
menuData['cRepe'][2][0]="Replication & Recovery";
menuData['cRepe'][2][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepe'][2][2]=0;
menuData['cRepe'][3][0]="Access Control";
menuData['cRepe'][3][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepe'][3][2]=0;
menuData['cRepe'][4][0]="Cryptography";
menuData['cRepe'][4][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepe'][4][2]=0;
menuData['cRepe'][5][0]="Intrusion Detection";
menuData['cRepe'][5][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepe'][5][2]=0;
menuData['cRepe'][6][0]="Security Solutions";
menuData['cRepe'][6][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepe'][6][2]=0;

menuData['cRepf'][0][0]="Networking Concepts";
menuData['cRepf'][0][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepf'][0][2]=0;
menuData['cRepf'][1][0]="Architecture";
menuData['cRepf'][1][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepf'][1][2]=0;
menuData['cRepf'][2][0]="Networking terminologies";
menuData['cRepf'][2][1]="http://64.70.131.105/sap/cons.htm";
menuData['cRepf'][2][2]=0;



menuData['Nsrm'][0][0]="Career Synopsis";
menuData['Nsrm'][0][1]="http://www.rajeshdev.com";
menuData['Nsrm'][0][2]=0;
menuData['Nsrm'][1][0]="SAP / BW Consulting";
menuData['Nsrm'][1][1]="http://www.rajeshdev.com";
menuData['Nsrm'][1][2]=0;
menuData['Nsrm'][2][0]="Web Interface Development";
menuData['Nsrm'][2][1]="http://www.rajeshdev.com";
menuData['Nsrm'][2][2]=0;
menuData['Nsrm'][3][0]="Training / Documentation";
menuData['Nsrm'][3][1]="http://www.rajeshdev.com";
menuData['Nsrm'][3][2]=0;
menuData['Nsrm'][4][0]="Multimedia";
menuData['Nsrm'][4][1]="http://www.rajeshdev.com";
menuData['Nsrm'][4][2]=0;
menuData['Nsrm'][5][0]="Functional Experience";
menuData['Nsrm'][5][1]="http://www.rajeshdev.com";
menuData['Nsrm'][5][2]=0;
menuData['Nsrm'][6][0]="Contact Me";
menuData['Nsrm'][6][1]="http://www.rajeshdev.com";
menuData['Nsrm'][6][2]=0;
menuData['Nsrm'][7][0]="Frequently Asked Questions";
menuData['Nsrm'][7][1]="http://www.rajeshdev.com";
menuData['Nsrm'][7][2]=0;


// END DHTML TEMPLATE FUNCTIONS //

window.name = "RAJ";

//-->