window.onload = function()
{
	if( window.opener ) // is this a popup?
    {
	    document.getElementById( "javascriptState" ).value = "on";
    }
	
	var hasErrors = document.getElementById( "hasErrors" );
	var productTypeURL = document.getElementById( "productTypeURL" );
	if( hasErrors.value == "no" )
	{
        var stateOid =
            document.getElementById( "stateSelector" ).options[
                document.getElementById( "stateSelector" ).selectedIndex ].value;
		window.opener.document.location.href = '/plans/compare/' + productTypeURL.value +
            '.html?stateSelector=' + stateOid;
		window.parent.close();
	}
}

