var stockDataRightpanel = {
	myCon:   		false,
	control:		false,
	body:    		false,
	loader:  		false,
	target: 		false,
	pageURL:		false,
	params: 		false,
	myFuncWhenDone: false,
	
	stockTotal:		false,
	currentPage:	false,
	SearchParams:	false,
	
	isMozilla:		false,
	isMouseOver:	false,
	quicksearchTried: false,
	objMessage:		null,
	
	objList: 		null,
	objArray: 		null,
	objPosition: 	null,
	varPosition:	null,
	formControl:	null,
	
	showMakeinRightpanel: function()
	{
		stockDataRightpanel.myCon = new AjaxDell();
		if(!stockDataRightpanel.myCon) return;
		
		stockDataRightpanel.target = document.getElementById('xmlgetmake');
		stockDataRightpanel.pageURL = "stocklist_action.asp";
		stockDataRightpanel.params = "action=showMakeinRightpanel";
		
		stockDataRightpanel.myFuncWhenDone = function(xmlObj) 
		{
			//alert(xmlObj.responseText);
			stockDataRightpanel.target.innerHTML = xmlObj.responseText;
		}
		stockDataRightpanel.retrieveContent();	
	},	
	
	retrieveContent: function() {
		stockDataRightpanel.myCon.connect(stockDataRightpanel.pageURL, "Get", stockDataRightpanel.params, stockDataRightpanel.myFuncWhenDone);
	},
	
	TemplateFunction: function(valTest) {
		//alert(valTest);
	}
};

