function CancelMouseEvent()
{
	alert("All images on this site are copyrighted and may not be downloaded or printed without the express permission of the photographer.");
}

function deletePrintsButton_onclick(imageId, mountingId, sizeId, sprayId, orderId, quantity, isShoppingCart)
{
    window.location="/RemovePrintsFromOrder.aspx?ImageId="+imageId+"&MountingId="+mountingId+"&SizeId="+sizeId+"&SprayId="+sprayId+"&OrderId="+orderId+"&Quantity="+quantity+"&IsShoppingcart="+isShoppingCart;
}

function addPrintsButton_onclick(imageId, orderId, isShoppingCart) 
{
    window.location="/BuyPrints.aspx?ID=" + imageId + "&OrderId=" + orderId + "&IsShoppingCart=" + isShoppingCart;
}


