// JavaScript Document
<!--
function confirmDelete(EiMessage)
// EiMessage - Pass in the message you want displayed on the confirrm dialog
{
input_box=confirm(EiMessage);
if (input_box==true)
	{ 
	//deleteform = The form we are deleting from must be called this.
		if (document.deleteform){
			document.deleteform.submit()
		}else{
			document.location.href='view_cart.asp?ClearCart=yes'
			}
	}
else
	{
	return false;
	}
}
-->
