products = [];
products[2] = "Texas Holdem Deck";
products[3] = "Texas Holdem: Expert Deck";
products[5] = "Omaha Hi-Low Deck";
products[7] = "Blackjack Deck";

cart = parseInt(document.cookie);
function addToCart(code, lang) {
	document.forms[0].elements["item_name"].value = products[code];
	document.forms[0].elements["item_number"].value = 100000 + code;
	if (lang) {
		document.forms[0].elements["item_name"].value += " (" + lang + ")";
		document.forms[0].elements["item_number"].value += lang;
	}
	document.forms[0].submit();
}

function checkOut() {
	document.forms[1].submit();
}

function checkOutXP() {
	//document.forms[0].target = "paypal";
	addToCart(2);
}

window.onload = window_onload;

function window_onload() {
	outer.offsetParent.scrollTop=0;
}