function companyOverview(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"companyoverview.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'companyoverview';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function leadershipTeam(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"leadershipTeam.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'leader';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function softwaredevelopment(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"softwaredevelopment.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
				showRightColumn();
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'softwaredevelopment';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function staffaugmentation(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"staffaugmentation.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
				showRightColumn();
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'staffaugmentation';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function itrecruiting(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"itrecruiting.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
				showRightColumn();
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'itrecruiting';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function offshoreindiaoption(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"offshoreindiaoption.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'offshoreindiaoption';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}
function ouritmethodology(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"ouritmethodology.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'ouritmethodology';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}
/*
function offshoreindiaoption(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"offshoreindiaoption.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
				var rightcol = document.getElementById("rightcol");
				if(rightcol!=null){
					rightcol.style.display="block";
				}
				var contentcol = document.getElementById("contentcol");
				if(contentcol!=null){
					contentcol.style.width="60%";
				}
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'offshoreindiaoption';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}
function ouritmethodology(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"ouritmethodology.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
				var rightcol = document.getElementById("rightcol");
				if(rightcol!=null){
					rightcol.style.display="block";
				}
				var contentcol = document.getElementById("contentcol");
				if(contentcol!=null){
					contentcol.style.width="60%";
				}
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'ouritmethodology';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}*/
function showRightColumn(){
	var rightcol = document.getElementById("rightcol");
	if(rightcol!=null){
		rightcol.style.display="block";
	}
	var contentcol = document.getElementById("contentcol");
	if(contentcol!=null){
		contentcol.style.width="60%";
	}
}
function hideRightColumn(){
	var rightcol = document.getElementById("rightcol");
	if(rightcol!=null){
		rightcol.style.display="none";
	}
	var contentcol = document.getElementById("contentcol");
	if(contentcol!=null){
		contentcol.style.width="80%";
	}
}
function ourbpomethodology(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"ourbpomethodology.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
				hideRightColumn();
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'ourbpomethodology';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}


function casestudies(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"casestudies.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'casestudies';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function whitepaper(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"whitepaper.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'whitepaper';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function contactus(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"contactus.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'contactus';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function joinus(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"joinus.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'joinus';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}
function thankyou(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"thankyou.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'thankyou';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}
/* function for software development sub menu*/
function developmentandintegration(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"developmentandintegration.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
				showRightColumn();
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'developmentandintegration';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}
function appmaintenance(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"appmaintenance.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
				showRightColumn();
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'appmaintenance';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}
function offshoreteam(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"offshoreteam.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
				showRightColumn();
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'offshoreteam';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}
function testing(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"testing.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
				showRightColumn();
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'testing';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}
function itdevelopmentapproach(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"itdevelopmentapproach.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
				showRightColumn();
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'itdevelopmentapproach';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}
function domainexpertise(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"domainexpertise.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
				showRightColumn();
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'domainexpertise';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}
function bposervices(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"bposervices.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
				showRightColumn();
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'bposervices';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function healthcarebpoofferings(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"healthcarebpoofferings.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
				showRightColumn();
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'healthcarebpoofferings';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function healthcareservices(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"healthcareservices.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
				showRightColumn();
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'healthcare';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function mediaandpublishing(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"mediaandpublishing.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
				showRightColumn();
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'mediaandpublishing';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}
function education(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"education.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
				showRightColumn();
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'education';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function onlineretailing(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"retailanddistribution.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
				showRightColumn();
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'onlineretailing';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

/* function of case studies*/

function casestudy1(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"1_marketing_award.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'marketing_award';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function casestudy2(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"2_complete.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'complete_ecommerce';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function casestudy3(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"3_B2B.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'b2b_ecommerce';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function casestudy4(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"4_membership.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'membership_system';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function casestudy5(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"5_multimedia.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'ndm_multimedia';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function casestudy6(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"6_video.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'test_videodevices';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function casestudy7(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"7_print.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'print_adds';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function casestudy8(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"8_PDF.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'pdf_creation';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function casestudy9(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"9_image.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'image_processing';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function casestudy10(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"10_executive.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'dashboard_app';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function casestudy11(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"11_software.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'software_tracking';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function casestudy12(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"12_trading.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'trading_exchange';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function casestudy13(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"13_web.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'webbased_scheduling';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function casestudy14(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"14_charity.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'charitycatalog_portal';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function casestudy15(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"15_IAD.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'iad_inventory';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function casestudy16(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"16_data.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'data_extraction';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function casestudy17(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"17_CaseStudyNextGenElectronics.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'dynamism_ecommerce';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function casestudy18(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"18_healthcareservices.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'healthcaredomain';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function casestudy19(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"19_mediaandpublishingrelatedprojects.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'mediaandpublishing';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function casestudy20(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"20_educationrelatedproject.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'education';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function casestudy21(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"21_ndmeducation.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'ndm_education';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}
function casestudy22(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"22_retailanddistributionrelatedproject.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'retailing';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}

function news_wholesalerstotapconsumers(){
	var randomNumber = Math.floor(Math.random() * 1111);
	var url= webURI+"news_wholesalerstotapconsumers.htm?randomNumber="+randomNumber;
	var xmlHttp = ajaxObject();
	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4){
   			if (xmlHttp.status==200){ 
   				var contentDiv = document.getElementById("plainArea");
				contentDiv.innerHTML = xmlHttp.responseText;
				window.location.hash = 'wholesalerstotapconsumers';
	   		}
		}
 	}
	 xmlHttp.open("GET",url,true);
	 xmlHttp.send(null);
}



