/**
 * Script for displaying the "Select Store" page for the TechShop website.
 */
function selectStore() {
	var currURL = window.location.href;
	
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open('/select_store.html','" + id + "','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=430,height=400,left=100,top=100');");
}
