function delQuote(safari_name)
{ 
	ajaxFunction();
	xmlHttp.onreadystatechange=function()
	{ 
		if(xmlHttp.readyState==4)
		{
			document.getElementById('req_cart').innerHTML=xmlHttp.responseText;
		}
	}
	xmlHttp.open("GET","ajax_del_quote.php?pn="+safari_name,true);
	xmlHttp.send(null);
}

function delAllQuote()
{ 
	ajaxFunction();
	xmlHttp.onreadystatechange=function()
	{ 
		if(xmlHttp.readyState==4)
		{
			document.getElementById('req_cart').innerHTML=xmlHttp.responseText;
		}
	}
	xmlHttp.open("GET","ajax_del_quote.php?clall=1",true);
	xmlHttp.send(null);
}


