/*
    Valid tab names are ship and desc.
*/

	function togglesection(sectionname)
	{
		if (sectionname=="desc") {
			hidesection("ship");
			showsection("desc");      
		} else {
			hidesection("desc");
			showsection("ship");        
		}        
	}

	function showsection(sectionname) 
	{    
		if (document.getElementById(sectionname+"_box")) {
			document.getElementById(sectionname+"_box").style.display = "";
			document.getElementById(sectionname+"link").innerHTML = "<img src=\"images/g_tab_" + sectionname + "_sel.gif\">";
		}
		
	}

	function hidesection(sectionname)
	{
		if(document.getElementById(sectionname+"_box")) {
			document.getElementById(sectionname+"_box").style.display = "none";
			document.getElementById(sectionname+"link").innerHTML = "<img src=\"images/g_tab_" + sectionname + ".gif\">";
		}
	}

	
	function updateCartTotals()
	{
		$("#cartTotals").load("/includes/i_cart_totals.asp");
	}
	
	function showRequest(p_formData, p_jQueryForm, p_ajaxOptions)
	{
		var jQueryObj = $("#" + p_ajaxOptions.id);
		var offsetObj = jQueryObj.offset();
		var ajaxDiv = $("#loading");
		ajaxDiv.css("top", offsetObj.top);
		ajaxDiv.css("left", offsetObj.left);
		ajaxDiv.css("width", jQueryObj.width());
		ajaxDiv.css("height", jQueryObj.height());
		ajaxDiv.css("z-index", "3");
		ajaxDiv.fadeIn("fast");
	}
	
	function showResponse()
	{
		updateCartTotals();
		$("#loading").fadeOut("fast");
	}
	