function deliveryOK(_l) {

	var currentTime = new Date();
	var month = currentTime.getMonth();
	var day = currentTime.getDate();
	var hours = currentTime.getHours()
	var minutes = currentTime.getMinutes()
	var longMinutes = hours * 60
	var longTime = longMinutes + minutes;
	
	// if (hours > 21 || longTime < 630)
	if (hours > 21 || longTime < 630) {
		window.open('/notDeliveryTime.htm', height=900, width=350);
		
	/** Thanksgiving Holiday Time **/
	} else if(month == 10 && day == 24) {
		window.open('/notDeliveryTime.htm', height=900, width=350); 
	/** Christmas Holiday Time **/
	} else if(month == 11 && day == 24 && hours >= 20) {
		window.open('/notDeliveryTime.htm', height=900, width=350); 
	} else if(month == 11 && day == 25) {
		window.open('/notDeliveryTime.htm', height=900, width=350);
	} else {
		document.location=_l;	
	}
}


function popitup(url) {
	newwindow=window.open(url,'name','height=375,width=424');
	if (window.focus) {newwindow.focus()}
	return false;
}
