function AddCart (AJAXresponse)
{
   document.getElementById("cartbox").innerHTML = AJAXresponse;
      //initLytebox(); 
   //document.getElementById ('ProcesingClaimsPage').style.display ='none';
    //$('overlay').style.display = 'none'; 
}

function AddToCart(action,id)
 {
   
	document.getElementById('screenoverlay').style.visibility = 'visible';
document.getElementById('screenoverlay').style.display= 'block';
    var url = "AjaxRequest.php?action="+action+"&id="+id
    RunAjax(url, 'AddCart');
	document.getElementById('topbox').style.visibility = 'visible';
document.getElementById('topbox').style.display= 'block';
    scroll(0,0);
 }

function closeTop()
{
	//Hide the overlay and tobox...
	document.getElementById('screenoverlay').style.visibility='hidden';
	document.getElementById('topbox').style.visibility='hidden';
}
