/**
 *
 */
function funcSatDel(dow,time,satDel){		

	if(satDel !=1)
	{
		if(dow==5 && time <15)
		{
			
		$('#dowDLG').html("<b><font size='+1'>Would you like your order delivered tomorrow (Saturday) before 12pm? <br><br> There will be an extra &pound;20 added to your delivery charge</font><br><br>(Only available for delivery addresses in mainland UK)</b>");
			$('#dowDLG').dialog({
				width:500,
				height:250,
				title:'Saturday Delivery?',
				buttons:{
					'Yes Please':function(){
						$.ajax({
							url:'ajax_funcs/checkout.php',
							data:'mode=satDel',
							dataType:"json",
							success:function(strData){
								$('#delCharge').html(strData['del']);
								$('#totalCharge').html(strData['total']);
								$('#delTxt').html(strData['delTxt']);
								$('#dowDLG').dialog('destroy');
								
								}
							})
					},
					'No Thanks':function(){
						$(this).dialog('destroy');
					}
				},
				close:function(){
					$(this).dialog('destroy');
				}
			})
		}
	}
		
}