function setComputerPage(brand,type,objID,lang){
	document.getElementById('engbtn').innerHTML='<a href="#" onclick="setMainMenu(\'MainMenu\',\'Eng\');setComputerPage(\''+brand+'\',\''+type+'\',\''+objID+'\',\'Eng\');"><img border="0" src="image/menubar/eng.gif" width="30" height="28" /></a>';
	
	document.getElementById('chibtn').innerHTML='<a href="#" onclick="setMainMenu(\'MainMenu\',\'Chi\');setComputerPage(\''+brand+'\',\''+type+'\',\''+objID+'\',\'Chi\');"><img border="0" src="image/menubar/chi.gif" width="30" height="28" /></a>';
	
	obj = document.getElementById(objID);
	
	var x = new AjaxCall();
	x.onDone=function(){
		//obj.innerHTML = x.xmlhttp.responseText;
		
	if (x.xmldoc){
		str = '';
		if(lang=="Eng")
			str+='<table width="726"  border="0" cellpadding="0" cellspacing="0" class="word"> ';
		else
			str+='<table width="726" border="0" cellpadding="0" cellspacing="0" class="word"> ';

		str+='<tr >';
		str+='<td colspan="2">';
			str+='<img align="top"  align="right" src="image/Computer'+lang+'.gif" width="710" height="86" /><br>';
		str+='</td>';
		str+='</tr>';		
		str+='<tr>';
		str+='<td  colspan="2">';
		str+='<p />';
		BrandList = new Array();
		if(type=="Desktop")
		BrandList=["Lenovo","HP","Dell"];
		else
		BrandList=["Lenovo","HP","Dell","Fujitsu","Sony","Toshiba"];
		str+=' | ';	
		for(n in BrandList){
			if(brand!=BrandList[n])
				str+='<a href="#" onclick="setComputerPage(\''+BrandList[n]+'\',\''+type+'\',\'MainBody\',\''+lang+'\')" >'+BrandList[n]+'</a> | ';
			else
				str+=BrandList[n]+' | ';				
			
		}
			str+='<p />';	
			str+='</td>';	
		str+='</tr>';
			str+='<tr>';
		str+='<td  colspan="2">';
				str+='<image src="image/'+brand+'.gif" />';
				str+='</td>';	
		str+='</tr>';
								
						
				notie = x.browsertype;
				//Functions = x.xmldoc.getElementsByTagName("Functions");
				//Function = Functions[0].childNodes;
				ComputerLists = x.xmldoc.getElementsByTagName('Item');
				BrandLists=ComputerLists[0].getElementsByTagName(brand);
				ItemLists=BrandLists[0].getElementsByTagName(type);
			//		alert(PromotionsLists.length);
			//	alert (PromotionsLists[0].getElementsByTagName(lang)[0].childNodes[0].nodeValue);
			//	alert(PromotionsLists[0].getElementsByTagName(lang)[0].getAttribute('link'));
				
				for (i=0+notie;i< ItemLists.length-notie ;i+=1+notie){
					str+='<tr >';
					str+='<td width="226px">';
					str+='<img  src="image/Product/Computer/'+type+'/'+brand+'/'+ItemLists[i].getElementsByTagName('image')[0].childNodes[0].nodeValue+'" width="200px" height="150px" />';
					str+='</td>';
					str+='<td width="500px">';
					str+='<span class="orange_title">'+ItemLists[i].getElementsByTagName('Model')[0].childNodes[0].nodeValue+'</span><br /><br />';
					str+=ItemLists[i].getElementsByTagName('Description')[0].getElementsByTagName(lang)[0].childNodes[0].nodeValue;
					//if(PromotionsLists[i].getElementsByTagName('New')[0].childNodes[0].nodeValue == 'true')
					//str+='<img src="image/new.gif" />';
					str+='<hr /></td>';
					str+='</tr>';
					
				}	
				str+='</table>';
			}
			//alert(str);
			document.getElementById(objID).innerHTML = str;
			setMenu();
		}
		x.sendXMLRequest('computer.xml');	
}
