function loadPopupWindow(type,subType,element){	
	var ajax = new sack();
	if(type.indexOf("_ingredients") != -1){
		document.getElementById("ajaxinfoarea").style.top = "30px";
		document.getElementById("ajaxinfoarea").style.left = "153px";
		ajax.requestFile = "/components/getIngredients.asp";
	}
	else{
		document.getElementById("ajaxinfoarea").style.top = "30px";
		document.getElementById("ajaxinfoarea").style.left = "264px";
		ajax.requestFile = "/components/eatRight.asp";
	}
	
	//ajax.requestFile = "/components/eatRight.asp";
	ajax.setVar("t",type); 
	ajax.setVar("st",subType); 
	ajax.onCompletion = function () {
		document.getElementById("pyramidPopup").style.display = "none";
		
		//document.getElementById("ajaxinfoarea").style.backgroundImage = "/images/nutFactBg.gif";
		document.getElementById("ajaxinfoarea").style.zIndex = "1000";
		document.getElementById("ajaxinfoarea").innerHTML = ajax.response;
		document.getElementById(element).style.textDecoration = "none";
	}
	ajax.runAJAX();
}

/*function loadIngredients(type,subType,element){	
	var ajax = new sack();

	ajax.requestFile = "/components/getIngredients.asp";
	ajax.setVar("t",type); 
	ajax.setVar("st",subType); 
	ajax.onCompletion = function () {
		document.getElementById("pyramidPopup").style.display = "none";
		document.getElementById("ajaxinfoarea").style.display = "none";
		//document.getElementById("ajaxinfoarea").style.backgroundImage = "/images/nutFactBg.gif";
		document.getElementById("ajaxinfoarea").style.zIndex = "1000";
		document.getElementById("ajaxinfoarea").innerHTML = ajax.response;
		document.getElementById(element).style.textDecoration = "none";
	}
	ajax.runAJAX();
}*/