function popup(url)
{
	pu = window.open(url, "PopUp", "width=560,height=400,status=no,toolbar=no,scrollbars=yes");
	pu.focus();
}

var lastfield = "";
var lastcolor = "#FFFFFF";
function setDelDate(field, date)
{
	if (lastfield != "") {
		document.getElementById(lastfield).bgColor = lastcolor;
	}

	obj = document.getElementById(field);

	if (obj) {
		lastfield = field;
		lastcolor = obj.bgColor;

		obj.bgColor = "#FF0000";
	}

	document.checkout.shiptodate[1].checked = true;
	document.checkout.specdate.value = date;
}

function toggleDelDate()
{
	if (document.checkout.shiptodate[1].checked) {
		if (lastfield != "") {
			document.getElementById(lastfield).bgColor = "#FF0000";
		}
	} else {
		if (lastfield != "") {
			document.getElementById(lastfield).bgColor = lastcolor;
		}
		
		document.checkout.specdate.value = "";
	}
}

function changeImage(id, image)
{
	document.getElementById(id).src = image;
}

//if (navigator.appName == "Microsoft Internet Explorer") {
//	window.setInterval("document.getElementById('bowl').style.zIndex = 65535", 10);
//}
