// JavaScript Document

var page;

function redirect() {
	window.location = page;
	document.getElementById("redirectAlgraShopping").style.display = "none";
	document.getElementById("redirectGSM").style.display = "none";
}

function gotoPage(url, store) {
	page = url;
	timer = setTimeout('redirect()', '2000');


	if (store == "AlgraShopping"){
		document.getElementById("redirectAlgraShopping").style.display = "block";
	}

	if (store == "GSM"){
		document.getElementById("redirectGSM").style.display = "block";
	}
}