/*

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@
@@
@@ FUNCTIONS.js - revolutiontea.com
@@
@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

*/


function choose_promo_item(product_key)
{
	//alert("choose");
	//document.location.href = "basket.html?action=add_promo_item&item=product_key";
}

// LAUNCH NEW WINDOW-
// product enlarged view

function zoom(product_sku)
{
	//alert("zoom");
	newwindow = window.open("/product_zoom.php?sku="+product_sku,"Gallery","width=610,height=550,resizable=yes,scrollbars=1");
	if (window.focus) {newwindow.focus();}
}


function swap_img(selecta)
{
	//alert(selecta.value);

	var img_container_name = selecta.name + "_img";

	document.getElementById(img_container_name).src = "/products/"+selecta.value+"c.jpg";
	return false;

}
