function CancelMouseEvent()
{
	alert("All images on this site are copyrighted and may not be downloaded or printed without the express written permission of the photographer.  Violators will be prosecuted to the maximum extent allowable by law.");
}

var scrollCount=0;
var scrolldelay;
function pageScroll() {
    scrollCount++;
    if( scrollCount < 10 )
    {
        window.scrollBy(0,50); // horizontal and vertical scroll increments
        scrolldelay = setTimeout('pageScroll()',10); // scrolls every 100
     }
    else{
        scrollCount=0;
        stopScroll();
    }

}

function stopScroll() {
    clearTimeout(scrolldelay);
    window.scrollBy(0,-20);
}

function OpenImagePreview(imageFolder,imageFile)
{
    window.open ("/ImagePreview.aspx?a=" + imageFile +"&b=" + imageFolder,"Preview","width=900,height=600,location=no, directories=no,status=no,resizable=no,toolbar=no,menubar=no"); 
}

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;
}

    


