function showCat(cat) {
	document.forms['cat'].category.value = cat;
	document.forms['cat'].submit();
}

function showPartner(partner) {
	document.forms['b'].partner.value = partner;
	document.forms['b'].submit();
}

function showRegalo() {
	document.forms['b'].category.value = "";
	document.forms['cat'].catalog.value = "";
	document.forms['b'].gift.checked = true;
	document.forms['b'].submit();
}

function showSearch(str) {
	document.forms['s'].keyword.value = str;
	document.forms['s'].submit();
}

function showCatalog(cat) {
	document.forms['cat'].category.value = cat;
	document.forms['cat'].catalog.value = 1;
	document.forms['cat'].saldo.value = 0;
	document.forms['cat'].submit();
}

function showSaldos(cat) {
	document.forms['cat'].category.value = cat;
	document.forms['cat'].saldo.value = 1;
	document.forms['cat'].catalog.value = 0;
	document.forms['cat'].submit();
}


function showCategory(cat) {
	document.forms['paginator'].category.value = cat;
	document.forms['paginator'].keyword.value = "";
	document.forms['paginator'].submit();
}

function showReward(prod) {
	document.forms['prod'].id.value = prod;
	document.forms['prod'].submit();
}

function redeemReward(prod) {
	//window.location.href=prod;
	window.open(prod);
}

function showREPop() {
	$("#repopup").show();
	//document.getElementById('repopup').style.display = 'block';
}

function hideREPop() {
	$("#repopup").hide();
	//document.getElementById('repopup').style.display = 'none';
}

function showRegaloPop(el) {
	var pop = document.getElementById('regalopopup');
	pop.style.position = 'absolute';
	pop.style.x = el.style.x;
	pop.style.y = el.style.y;
	pop.style.display = 'block';
}

function hideRegaloPop() {
	var pop = document.getElementById('regalopopup');
	pop.style.display = 'none';
}

function gotoPage(page) {
	document.forms['paginator'].page.value = page;
	document.forms['paginator'].submit();
}
