function Load()  {
	// MAXIMIZE WINDOW
	//
	window.moveTo(0,0);
	window.resizeTo(screen.availWidth,screen.availHeight);
	}

function submitForm(action,pClearViewState,target)
{
    // This is needed so the form doesn't validate the VIEWSTATE hidden data
    if (pClearViewState)
        document.forms[0].__VIEWSTATE.name = "";
        document.forms[0].action = action;
        document.forms[0].target = target;
        document.forms[0].submit();  
}
function displayLiveChatWindow()
{
    if (document.all.ctl00_ContentPlaceHolder1_txtFirstName.value.length == 0 ||
        document.all.ctl00_ContentPlaceHolder1_txtFromCity.value == 0 ||
        document.all.ctl00_ContentPlaceHolder1_txtFromZipCode.value == 0 ||
        document.all.ctl00_ContentPlaceHolder1_txtToCity.value == 0 ||
        document.all.ctl00_ContentPlaceHolder1_txtToZipCode.value == 0)
        return 1;

    if (confirm("Would you like to chat live with one of our moving professionals?"))
    {
        // Stop from submitting form
        window.event.returnValue = false
        displayLiveChat();
    }

}