
function GetFormatToday()
{
	var d = new Date();
	var curr_date = d.getDate();
	var curr_month = d.getMonth();
	curr_month++;
	var curr_year = d.getFullYear();
	return curr_month + "/" + curr_date + "/" + curr_year;
}


function GotoStore(URL)
{
	location.href=URL + "&date=" + GetFormatToday();
}
