﻿// JScript File
function onCall(message)
{
   alert(message);
}
function cartCheck()
{
    var i = 0;
    i = confirm("Minimum order amount should be $49.00. Click CANCEL to contact our customer service for sample order.");
    if (i==0)
    {
        location.href='http://www.hysupplies.com/webforms/ContactUs.aspx';
    }
}

