// ****************************************************************
    // * Search Process
    // ****************************************************************
    
	function SubmitSearchProcess()
    {   
	try{
		
		var address = new String(document.getElementById("address").value);
		var address2 = new String(document.getElementById("address2").value);
		var zipcode = new String(document.getElementById("zipcode").value);
		var kbid = new String(document.getElementById("kbid").value);
		var subid = new String(document.getElementById("subid").value);
		var phoneURL = new String(document.getElementById("phoneURL").value);
		
		if (address.length == 0)
		{
			alert('Address is a required field');
			return false;
		}
		if (zipcode.length == 0)
		{
			alert('Zip code is a required field');
			return false;
		}
		if (isNaN(parseInt(zipcode)))
		{
			alert('Zip code must be a 5 digit number');
			return false;
		}
		
		//url = 'https://www.buycomcast.com/Order/orders1.aspx?address=' + address + '&zipcode=' + zipcode + '&suite=' +  address2 + '&cpao=300&cpag=A6280&aid=6280' ;
		url = 'http://www.shopbroadband.com/showOffers.aspx?a=' + address + ',' + address2 + ',,,' + zipcode + '&kbid=' + kbid + '&subid=' + subid +  phoneURL;
        
		postToParent(url)
		
		}
		catch(exc)
		{
			alert(exe.toString());
		}
    }
	
    function postToParent(parentURL)
    {
        var opener = null;
        if (window.opener == null)
            opener = this.parent;
        else
        {
            opener = window.opener;
        }             
        // show splash page
        // change
//        opener.location.replace(parentURL); 
		window.open(parentURL);
    }