

var date = new Date()
  	var hour = date.getHours()
	var minute = date.getMinutes()
	var timeString = hour + "." + minute
	var time = parseFloat(timeString)

var redirects =
{ 
	BryantPark: "http://wcbpa.e-touch.com/",
	FlatIron: "http://wc019.e-touch.com/",
	Tribeca: "http://wctri.e-touch.com/",
	WestChelsea: "http://wctun.e-touch.com/",
	Village: "http://wcvil.e-touch.com/",
	FifthAvenue: "http://wc555.e-touch.com/",
	ParkAvenue: "http://wc245.e-touch.com/",
	RockCenter: "http://wcrfc.e-touch.com/",
	SoHo: "http://wc568.e-touch.com/",
	LincolnCenter: "http://wc112.e-touch.com/",
	store113: "http://wc113.e-touch.com/",
	store114: "http://wc114.e-touch.com/",
	WestfieldCentre: "http://wcwfc.e-touch.com/",
	
    invalid: "select.html" 
} 

function checkStore(form){
	
	//alert("We are currently experiencing technical difficulties with our online ordering system.To place an order for delivery or pickup, please call 212-780-0577 x 2.")
	
	var storeInput = document.form.storeInput.value;
	var redirect = redirects.invalid;

	if (storeInput=="BryantPark")
	{
		redirect = redirects.BryantPark;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="FifthAvenue")
	{
		redirect = redirects.FifthAvenue;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="FlatIron")
	{
		redirect = redirects.FlatIron;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="Tribeca")
	{
		redirect = redirects.Tribeca;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="Village")
	{
		redirect = redirects.Village;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="WestChelsea")
	{
		redirect = redirects.WestChelsea;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="ParkAvenue")
	{
		redirect = redirects.ParkAvenue;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="RockCenter")
	{
		redirect = redirects.RockCenter;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="SoHo")
	{
		redirect = redirects.SoHo;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="store114")
	{
		redirect = redirects.store114;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="store113")
	{
		redirect = redirects.store113;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="LincolnCenter")
	{
		redirect = redirects.LincolnCenter;
		top.document.location.href = redirect;
		return false;
	}
	else if (storeInput=="Westfield")
	{
		redirect = redirects.WestfieldCentre;
		top.document.location.href = redirect;
		return false;
	}
	/* else
	{
		document.location.href = "http://wc555.e-touch.com/";
	} */
}
