function loadSerX(fName,newDivName)
{//can asign  a div name...........
    var IVRprogress='<div align=center ><embed src="../forum_images/progress_bar.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="242" height="42" wmode=transparent></embed></div>'
	$(newDivName).innerHTML =IVRprogress;
	new Ajax.Request(fName, { method: 'get',
		onComplete: function (httpObj) {
			$(newDivName).innerHTML = httpObj.responseText;
		}
		 });
}

function loadSerXtext(fName,newDivName)
{//can asign  a div name...........
 var IVRprogress='<div align=center ><embed src="../forum_images/progress_bar.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="242" height="42" wmode=transparent></embed></div>'
	$(newDivName).innerHTML =IVRprogress;
	new Ajax.Request(fName, { method: 'get',
		onComplete: function (httpObj) {
			$(newDivName).innerText = httpObj.responseText;
		}
		 });
}
//the below wll be delete in the future...........
function loadSer(fName)
{  
	new Ajax.Request(fName, { onComplete: displayData });
}
//the read result store in the httpObj.responseText
function displayData(httpObj)
{
	$('IVRdivLoad').innerHTML = httpObj.responseText;
	}

function loadSer1(fName)
{  
	new Ajax.Request(fName, { onComplete: displayData1 });
}
//the read result store in the httpObj.responseText
function displayData1(httpObj)
{
	$('IVRdivLoad1').innerHTML = httpObj.responseText;
	}
function loadSer2(fName)
{  
	new Ajax.Request(fName, { onComplete: displayData2 });
}
//the read result store in the httpObj.responseText
function displayData2(httpObj)
{
$('IVRdivLoad2').innerHTML = httpObj.responseText;
	}
function loadSer3(fName)
{  
	new Ajax.Request(fName, { onComplete: displayData3 });
}
//the read result store in the httpObj.responseText
function displayData3(httpObj)
{
	$('IVRdivLoad3').innerHTML = httpObj.responseText;
	}
function loadSer4(fName)
{  
	new Ajax.Request(fName, { onComplete: displayData4 });
}
//the read result store in the httpObj.responseText
function displayData4(httpObj)
{
	$('IVRdivLoad4').innerHTML = httpObj.responseText;
	}
function loadSer5(fName)
{  
	new Ajax.Request(fName, { onComplete: displayData5 });
}
//the read result store in the httpObj.responseText
function displayData5(httpObj)
{
	$('IVRdivLoad5').innerHTML = httpObj.responseText;
	}
function loadSer6(fName)
{  
	new Ajax.Request(fName, { onComplete: displayData6 });
}
//the read result store in the httpObj.responseText
function displayData6(httpObj)
{
	$('IVRdivLoad6').innerHTML = httpObj.responseText;
	}

