function addItemToCart(ctx, productId, skuId) {
	closeDialogIfOpen();
	var frameInfo = '<iframe src="' + ctx + '/global/popups/geoRestrictionNotification.jsp" id="addToCartPopup">';
	dialog = $j(frameInfo).dialog({
		title: 'We\'re Sorry...',
		height: 135,
		width: 466,
		modal: true,
		draggable: false,
		position: ['middle', 'middle'],
		open: function(){
			$j(this).css('overflow','hidden');
			if ($j.browser.msie){
				$j(this).css('width','470px');
				$j(this).css('height', '139px');
			} else {
				$j(this).css('width','466px');
				$j(this).css('height', '135px');
			}
		}
		});
	hidePopupCloseButton();
}

function addGiftcardToCart(ctx, productId,skuCombo) {
	addItemToCart(ctx);
}

function addToDigitalItems(skuId){
	return;
}
