
//Shopping cart scripts from www.marketground.com and www.ccieshop.com

//Parameters of the new window - you can change them to change the look and the size of the pop up shopping cart window


//Shopping cart scripts from www.marketground.com and www.ccieshop.com

//Parameters of the new window - you can change them to change the look and the size of the pop up shopping cart window


var parameters = 'toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=no,width=420,height=400,top=10,left=10';

function buyMG(site, name, price){

var product = escape(name)

var url = "https://curlingclub.net/cart/AddToCart.aspx?site=" + site + "&name="+product+"&price="+price; 

var mg= window.open(url,'ShoppingCart',parameters);
mg.focus();

}

function viewCart(){

var viewCart= window.open('https://curlingclub.net/cart/ShoppingCart.aspx','ShoppingCart',parameters); 

viewCart.focus(); 

}

// the function for the optional shipping cost parameter

function buyMGShip(site, name, price, sh){

var product = escape(name)

var url = "https://curlingclub.net/cart/AddToCart.aspx?site=" + site + "&name="+product+"&price="+price + "&sh=" + sh; 

var mg= window.open(url,'ShoppingCart',parameters);
mg.focus();

}


function getIP(){
	var getIPParameters = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,height=200,width=310,top=40,left=40';
	var viewCart = window.open('https://curlingclub.net/resources/ipDetector.aspx','CurrencyConverter',getIPParameters);
	viewCart.focus();
	return true;
}

function getMGCartHelp(){
	var helpParameters = 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,height=400,width=500,top=40,left=40';
	var viewCart = window.open('https://curlingclub.net/cart/help/index.aspx','CurrencyConverter',helpParameters);
	viewCart.focus();
	return true;
}
