/*------------------------------------------------------------------------------*/
function hideshow(item){ 
	if (which = document.getElementById(item)) {
		if (which.style.display=="none") {
			which.style.display		= "";
			which.style.position	= position ? "absolute" : position;
		} else {
			which.style.display		= "none";
			which.style.position	= "relative";
		} 
	}
}

/*------------------------------------------------------------------------------*/
function submit_to_cart(pcode) {
	document.addtocart.add.value	= pcode;
	document.addtocart.submit();
}

/*------------------------------------------------------------------------------*/
function toggleFTB() {
	ftb_checked	= document.addtocart.ftb_discount.checked;
	status		= ftb_checked ? true : false;
	//alert(ftb_checked);
	//status = false
	writeFTBcookie(status);
	if (!status) {
		document.addtocart.toggle_ftb.value	= 'off';
		//window.status	= 'ftb off';
	} else {
		document.addtocart.toggle_ftb.value	= '';
	};
		//alert(ftb_checked);

}

/*------------------------------------------------------------------------------*/
function writeFTBcookie(status) {
	expireDate	= new Date;
	yr			= expireDate.getYear();
	yr			= yr<2000 ? yr+1899 : yr-1;
	expireDate.setYear(yr);
	if (status) {
		document.cookie = "ftb=true";
	} else {
		document.cookie = "ftb=false" + ";expires=" + expireDate.toGMTString();
	}
}
