function redirectBrowserDealer(state,DLURL) {
	var dealerLocatorURL = 'http://freemotionfitness.com'+DLURL+'&state='+state;
	window.location.href = dealerLocatorURL;
}

var busy = false;
function Add2ShopCartProduct(form) {
	if (!busy) {
		busy = true;
		form.action = 'http://www.freemotionfitness.com/webapp/wcs/stores/servlet/OrderItemAdd';
		form.URL.value = 'OrderCalculate?doPrice=Y&updatePrices=1&calculationUsageId=-1&calculationUsageId=-2&calculationUsageId=-3&calculationUsageId=-4&calculationUsageId=-5&calculationUsageId=-6&calculationUsageId=-7&orderItemId*=&quantity*=&URL=OrderItemDisplay';
		form.submit();
	}
}

/* PopWindow Function */
function popWindow(url, myWidth, myHeight, myScrollbars, myTop, myLeft, myMenubar, myResize) {
	window.open(url, "","width="+myWidth+",height="+myHeight+",scrollbars="+myScrollbars+",top="+myTop+",left="+myLeft+",menubar="+myMenubar+",resizable="+myResize+",bgcolor=#ffffff");
}

function setPhoneNumber() {
	var now = new Date();
	var hour = now.getHours();
	if(hour > 5 && hour < 20) {
		document.getElementById('phone_number').innerHTML = "1-866-518-8141";
	} else {
		document.getElementById('phone_number').innerHTML = "1-800-643-3037";
	}
}

function redirectBrowser(redirectUrl) {
	window.location.href = redirectUrl;
}

