Click here to chat with a sales rep.
 No, Thanks!
Please feel free to call us at 989-771-1007 to speak with a representative in person.
Current Time: 09:04
Current Time (val): 904
Debug Display On: Yes
Active Start Time: 0900
Active Start Time (val): 900
Active End Time: 1700
Active End Time (val): 1700
Time To Popup: 90
Reset Timer: No
Popup Only Once: Yes
Days To Wait: 1
Page 1 Close Link: Yes
Page 2 On: No
Page 2 Display: popup_div
New Window Height: 350
New Window Width: 400
Page 2 Close Link: No
 " +
				"" +
				"" +
								"
" +
				"| " +
				" " +
				"CLOSE" +
				" | 
" +
								"";
	indicator.style.border = "1px solid silver";
	indicator.style.background = "white";
	indicator.style.position = "absolute";
	indicator.style.zIndex = "999";
	indicator.style.top = top + "px";
	indicator.style.left = left + "px";
	indicator.style.fontFamily = "arial,sans-serif";
	indicator.style.fontSize = "10pt";
	indicator.style.display = "block";
}
// remove div popup
function tp_removeIndicator()
{
	var ni = document.getElementById('indicator');
	ni.removeChild(document.getElementById('tp_TimedPopupDiv'));
	tp_active = false;
}
// open chat window
function tp_startChat()
{
	tp_createCookie("ChatRequestTimer", 0, tp_cookieExpire);
	tp_removeIndicator();
	window.open(chatURL ,null,"height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");
}
// on page load we call this function
function tp_init()
{
	if (!tp_askOnce)
	{
		if (tp_timerReset || tp_readCookie("ChatRequestTimer")=="0") tp_eraseCookie("ChatRequestTimer");	
	} 
	if (tp_readCookie("ChatRequestTimer") == null) 
	{
		tp_createCookie("ChatRequestTimer", tp_waitTime, tp_cookieExpire);
	}
	else
	{
		if (tp_readCookie("ChatRequestTimer") == "0" && !tp_timerReset) return;
	}
	tp_startTimer();				
}
// check if cookies are enabled, if so start waiting
if (tp_cookieEnabled) tp_init(); //window.onload = init;