// JavaScript Document
 varlast = 
    varMinOrderQty = 1.00
    function Cart2Checkout(intCartQty, intMode)
    {
    
	if(intCartQty==0 && intCartQty < varMinOrderQty) {
			alert('Your Cart is empty, please add items before checking out') 
			
	}
	else
	{	
	
  	if (intCartQty < varMinOrderQty)
		
			alert('Minimum order is $1.00');
		
	else
	{
		
if (intMode == 2)
{
window.location.href = ("index.asp?PageAction=GETGBUYCART");
}
else
{

				window.location.href = ("https://01644FB.NETSOLSTORES.COM/index.asp?PageAction=CARTCHECKOUT&Step=0&Type=RTNCI&TypeID=12577&DC=&Referrer=www.southofthered.net");
		}

	}

	}
	 }     
	function validateDetClearCart()
	{
	if(confirm('Are you sure you wish to clear your cart ?'))
		window.location.href='Index.asp?PageAction=CLEARCART';
	}
