// THIS must be updated to an accurate path for the Greybox popup to work correctly
var GB_ROOT_DIR = "/greybox/";

// General open js window
function popUpWindow (URL,width,height,wname,toScroll) { 
	if (toScroll == "") {
		toScroll = "no"
	}
	window.open(URL,wname,'width='+width+',height='+height+',location=no,toolbar=no,status=no,scrollbars='+toScroll+',resizable=no'); 
}

// Basket show error if going to checkout before selecting country
Event.observe(window, 'load', function(){
	Event.observe($("go-to-checkout-button"), 'click', function(e){
		if ($F('basket-country-select') == ''){
			alert('Please select your delivery country to proceed');
			Event.stop(e);
		}
	});
});