﻿  function checkout(formID) {
        document.getElementById(formID).action = "/basket/your-basket.aspx";
        document.getElementById(formID).submit();
        window.location = "/Default.aspx?ID=309";
        
    }
function redirectToBasket(thisId){
window.location = "/basket/your-basket.aspx?productid="+ thisId +"&cartcmd=add";
if (navigator.userAgent.indexOf("Firefox")!=-1)
{
window.location = "/basket/your-basket.aspx";
} 
}
    function showProductPopup(ID) {
/* document.getElementById(ID).style.display = "inline"; */
        ID = "#" + ID;
        $(document).ready(function() {
            $(ID).slideToggle("slow");

        });
    }

function focusThis(element)
{
  var elementObj = document.getElementById(element);
  elementObj.focus();
}




$(function(){
	if ($("span.orderlinesCount").text() != "") {
		$("#buy-online .collapsed").removeClass("collapsed");
/*		$("#buy-online .collapsed").each(function(){
			$this.removeClass("collapsed")
		});*/
	}	
});



